# Copyright 2011, 2012, 2013 Kevin Ryde
# This file is part of Math-NumSeq.
#
# Math-NumSeq is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 3, or (at your option) any later
# version.
#
# Math-NumSeq is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License along
# with Math-NumSeq. If not, see .
# Edsgar Dijkstra
# http://www.cs.utexas.edu/users/EWD/ewd05xx/EWD570.PDF
# http://www.cs.utexas.edu/users/EWD/ewd05xx/EWD578.PDF
#
# from 1858
#
# cf A000119 fibonacci diatomic
package Math::NumSeq::SternDiatomic;
use 5.004;
use strict;
use vars '$VERSION', '@ISA';
$VERSION = 58;
use Math::NumSeq;
use Math::NumSeq::Base::IterateIth;
@ISA = ('Math::NumSeq::Base::IterateIth',
'Math::NumSeq');
*_is_infinite = \&Math::NumSeq::_is_infinite;
# uncomment this to run the ### lines
#use Smart::Comments;
# use constant name => Math::NumSeq::__('Stern Diatomic');
use constant description => Math::NumSeq::__('Stern\'s diatomic sequence.');
use constant i_start => 0;
use constant values_min => 0;
use constant characteristic_smaller => 1;
use constant characteristic_increasing => 0;
use constant characteristic_integer => 1;
#------------------------------------------------------------------------------
# cf A126606 - starting 0,2 gives 2*diatomic
# A049455 - repeat 0..2^k
# A049456 - extra 1 at end of each row
# A174980 - type ([0,1],1), adding 1 extra at n=2^k
# A049455,A049456 stern/farey tree
# A070878 stern by rows
# A070879 stern by rows
#
use constant oeis_anum => 'A002487';
#------------------------------------------------------------------------------
sub ith {
my ($self, $i) = @_;
### SternDiatomic ith(): "$i"
if ($i <= 0) {
return 0;
}
if (_is_infinite($i)) { # don't loop forever if $value is +/-infinity
return $i;
}
my $b = ($i * 0); # inherit bignum 0
my $a = $b + 1; # inherit bignum 1
while ($i) {
if ($i % 2) {
$b += $a;
} else {
$a += $b;
}
$i = int($i/2);
}
### result: "$b"
return $b;
}
sub pred {
my ($self, $value) = @_;
### SternDiatomic pred(): $value
return ($value >= 0 && $value == int($value));
}
1;
__END__
=for stopwords Ryde Math-NumSeq radix Moritz
=head1 NAME
Math::NumSeq::SternDiatomic -- Stern's diatomic sequence
=head1 SYNOPSIS
use Math::NumSeq::SternDiatomic;
my $seq = Math::NumSeq::SternDiatomic->new;
my ($i, $value) = $seq->next;
=head1 DESCRIPTION
This is Moritz Stern's diatomic sequence
0, 1, 1, 2, 1, 3, 2, 3, ...
starting i=0
It's constructed by successive levels as
D(0) = 0
D(1) = 1
D(2*i) = D(i)
D(2*i+1) = D(i) + D(i+1)
so effectively the sequence is extended by copying the previous level to the
even indices of the next, and at the odd indices the sum of adjacent terms,
0, i=0
1, i=1
1, 2, i=2,3
1, 3, 2, 3, i=4,5,6,7
1,4,3,5,2,5,3,4, i=8,9,...,15
For example the i=4 row is a copy of the preceding values 1,2 with sums 1+2
and 2+1 interleaved. The value at the end of each row is the sum of the
last of the previous row and the first of the current row (which is
always 1).
=head1 FUNCTIONS
See L for behaviour common to all sequence classes.
=over 4
=item C<$seq = Math::NumSeq::SternDiatomic-Enew ()>
Create and return a new sequence object.
=back
=head2 Random Access
=over
=item C<$value = $seq-Eith($i)>
Return the C<$i>'th value of the sequence.
=item C<$bool = $seq-Epred($value)>
Return true if C<$value> occurs in the sequence, which means simply integer
C<$valueE=0>.
=back
=head1 SEE ALSO
L
=head1 HOME PAGE
http://user42.tuxfamily.org/math-numseq/index.html
=head1 LICENSE
Copyright 2011, 2012, 2013 Kevin Ryde
Math-NumSeq is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
version.
Math-NumSeq is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
You should have received a copy of the GNU General Public License along with
Math-NumSeq. If not, see .
=cut