|
|
A130157
|
|
a(1)=1. a(n) = number of earlier terms of {a(k)} that are coprime to A130158(n-1).
|
|
2
|
|
|
1, 1, 2, 3, 3, 5, 4, 7, 6, 9, 9, 11, 9, 10, 14, 13, 16, 11, 12, 7, 20, 14, 15, 23, 16, 17, 26, 25, 28, 21, 21, 31, 20, 27, 18, 35, 22, 29, 18, 39, 37, 41, 26, 26, 26, 26, 46, 44, 48, 26, 35, 27, 17, 18, 54, 46, 56, 29, 30, 50, 25, 25, 62, 32, 54, 26, 66, 46, 56, 38, 70, 67, 72, 33
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,3
|
|
COMMENTS
|
Note that A130158 is a list of the positive divisors of the terms of this sequence.
|
|
LINKS
|
Table of n, a(n) for n=1..74.
|
|
EXAMPLE
|
{a(k)} begins: 1,1,2,3,3,5,4,... So sequence A130158 begins: 1,1,1,2,1,3,1,3,1,5,1,2,4,... So for example, a(7) is the number of terms from among (1,1,2,3,3,5) which are coprime to A130158(6) = 3. Therefore a(7) = 4.
|
|
MAPLE
|
A130157 := proc(nmax) local a, a130158, n, anext, i ; a := [1] ; a130158 := [] ; while nops(a) < nmax do n := nops(a)+1 ; a130158 := [op(a130158), op(numtheory[divisors](op(-1, a)))] ; anext :=0 ; for i from 1 to nops(a) do if gcd(op(i, a), op(n-1, a130158)) = 1 then anext := anext+1 ; fi ; od ; a := [op(a), anext] ; od ; RETURN(a) ; end: A130157(80) ; # R. J. Mathar, Jun 12 2007
|
|
CROSSREFS
|
Cf. A130158.
Sequence in context: A242992 A029579 A106647 * A265018 A238792 A158745
Adjacent sequences: A130154 A130155 A130156 * A130158 A130159 A130160
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Leroy Quet, May 13 2007
|
|
EXTENSIONS
|
More terms from R. J. Mathar, Jun 12 2007
Edited by Charles R Greathouse IV, Apr 27 2010
Edited by N. J. A. Sloane, May 09 2010
|
|
STATUS
|
approved
|
|
|
|