login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A101915 G.f. satisfies: A(x) = 1/(1 + x*A(x^5)) and also the continued fraction: 1+x*A(x^6) = [1;1/x,1/x^5,1/x^25,1/x^125,...,1/x^(5^(n-1)),...]. 4
1, -1, 1, -1, 1, -1, 2, -3, 4, -5, 6, -8, 11, -15, 20, -26, 34, -45, 60, -80, 106, -140, 185, -245, 325, -431, 571, -756, 1001, -1326, 1757, -2329, 3086, -4088, 5415, -7173, 9504, -12593, 16685, -22105, 29284, -38796, 51400, -68100, 90225, -119535, 158365, -209810, 277970, -368275, 487916, -646421, 856416 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
LINKS
FORMULA
a(0) = 1; a(n) = -Sum_{k=0..floor((n-1)/5)} a(k) * a(n-5*k-1). - Ilya Gutkovskiy, Mar 01 2022
PROG
(PARI) a(n)=local(A); A=1-x; for(i=1, n\5+1, A=1/(1+x*subst(A, x, x^5)+x*O(x^n))); polcoeff(A, n, x)
(PARI) a(n)=local(M=contfracpnqn(concat(1, vector(ceil(log(n+1)/log(5))+1, n, 1/x^(5^(n-1)))))); polcoeff(M[1, 1]/M[2, 1]+x*O(x^(6*n+1)), 6*n+1)
CROSSREFS
Sequence in context: A098131 A017899 A003520 * A295073 A322340 A282504
KEYWORD
sign
AUTHOR
Paul D. Hanna, Dec 20 2004
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 20 04:36 EDT 2024. Contains 371798 sequences. (Running on oeis4.)