login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A130158
Table read by rows in which row n lists the positive divisors of A130157(n).
2
1, 1, 1, 2, 1, 3, 1, 3, 1, 5, 1, 2, 4, 1, 7, 1, 2, 3, 6, 1, 3, 9, 1, 3, 9, 1, 11, 1, 3, 9, 1, 2, 5, 10, 1, 2, 7, 14, 1, 13, 1, 2, 4, 8, 16, 1, 11, 1, 2, 3, 4, 6, 12, 1, 7, 1, 2, 4, 5, 10, 20, 1, 2, 7, 14, 1, 3, 5, 15, 1, 23, 1, 2, 4, 8, 16, 1, 17, 1, 2, 13, 26
OFFSET
1,4
EXAMPLE
Triangle starts:
1;
1;
1, 2;
1, 3;
1, 3;
1, 5;
1, 2, 4;
1, 7;
1, 2, 3, 6;
...
MAPLE
A130158 := proc(nmax) local a130157, a, n, anext, i ; a130157 := [1] ; a := [] ; while nops(a) < nmax do n := nops(a130157)+1 ; a := [op(a), op(numtheory[divisors](op(-1, a130157)))] ; anext :=0 ; for i from 1 to nops(a130157) do if gcd(op(i, a130157), op(n-1, a)) = 1 then anext := anext+1 ; fi ; od ; a130157 := [op(a130157), anext] ; od ; RETURN(a) ; end: A130158(80) ; # R. J. Mathar, Jun 12 2007
CROSSREFS
Cf. A130157.
Sequence in context: A029227 A029214 A134460 * A352930 A187497 A325704
KEYWORD
nonn,tabf
AUTHOR
Leroy Quet, May 13 2007
EXTENSIONS
More terms from R. J. Mathar, Jun 12 2007
Edited by Charles R Greathouse IV, Apr 30 2010
Edited by N. J. A. Sloane, May 09 2010
STATUS
approved