NAME
Math::NumSeq::GolombSequence -- sequence is its own run lengths, 1 upwards
SYNOPSIS
use Math::NumSeq::GolombSequence;
my $seq = Math::NumSeq::GolombSequence->new;
my ($i, $value) = $seq->next;
DESCRIPTION
A sequence 1,2,2,3,3,4,4,4,5,5,5,etc, each run length being given by the sequence itself at i=n.
Starting from 1,2, at i=2 the values is 2, so there should be a run of two 2s. Then at i=3 value 2 means two 3s. Then at i=4 value 3 means a run of three 4s, and so on.
FUNCTIONS
See "FUNCTIONS" in Math::NumSeq for the behaviour common to all path classes.
SEE ALSO
HOME PAGE
http://user42.tuxfamily.org/math-numseq/index.html
LICENSE
Copyright 2011 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 <http://www.gnu.org/licenses/>.