1Math::NumSeq::Beastly(3U)ser Contributed Perl DocumentatiMoanth::NumSeq::Beastly(3)
2
3
4

NAME

6       Math::NumSeq::Beastly -- numbers containing digits "666"
7

SYNOPSIS

9        use Math::NumSeq::Beastly;
10        my $seq = Math::NumSeq::Beastly->new;
11        my ($i, $value) = $seq->next;
12

DESCRIPTION

14       This sequence is the beastly numbers which are those with "666"
15       somewhere in their digits.  The default is decimal, or a radix can be
16       given.
17
18           666, 1666, 2666, 3666, 4666, 5666,
19           6660, 6661, 6662, ..., 6669,
20           7666, 8666, 9666,
21           etc
22

FUNCTIONS

24       See "FUNCTIONS" in Math::NumSeq for behaviour common to all sequence
25       classes.
26
27       "$seq = Math::NumSeq::Beastly->new ()"
28       "$seq = Math::NumSeq::Beastly->new (radix => $r)"
29           Create and return a new sequence object.
30
31           An optional "radix" parameter selects a base other than decimal.
32           If "radix" is 6 or less then there's no "6" digits at all and the
33           sequence has no values.
34
35       "$bool = $seq->pred ($value)"
36           Return true if $value has "666" in its digits, in the requested
37           "radix".
38

SEE ALSO

40       Math::NumSeq, Math::NumSeq::Repdigits
41

HOME PAGE

43       <http://user42.tuxfamily.org/math-numseq/index.html>
44

LICENSE

46       Copyright 2010, 2011, 2012, 2013, 2014, 2016, 2017, 2019 Kevin Ryde
47
48       Math-NumSeq is free software; you can redistribute it and/or modify it
49       under the terms of the GNU General Public License as published by the
50       Free Software Foundation; either version 3, or (at your option) any
51       later version.
52
53       Math-NumSeq is distributed in the hope that it will be useful, but
54       WITHOUT ANY WARRANTY; without even the implied warranty of
55       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
56       General Public License for more details.
57
58       You should have received a copy of the GNU General Public License along
59       with Math-NumSeq.  If not, see <http://www.gnu.org/licenses/>.
60
61
62
63perl v5.32.1                      2021-01-27          Math::NumSeq::Beastly(3)
Impressum