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

 


G.f.: Product_{n>=1} (1 - Lucas(n)*x^n + (-1)^n*x^(2*n)) where Lucas(n) = A000204(n).
6

%I #16 Mar 30 2012 18:37:34

%S 1,-1,-4,-1,1,11,7,25,18,-11,-1,0,-325,-199,122,-1364,-843,550,0,11,

%T 123,0,39650,24476,-15126,0,271443,164194,-103682,-1364,-1,-24476,0,

%U -9349,-123,-20633239,-12752043,7881225,-843,0,-226965629,-141422125,88114450,0,1

%N G.f.: Product_{n>=1} (1 - Lucas(n)*x^n + (-1)^n*x^(2*n)) where Lucas(n) = A000204(n).

%C a(A093519(n)) = 0 where A093519 lists numbers that are not equal to the sum of two generalized pentagonal numbers.

%H Paul D. Hanna, <a href="/A203860/b203860.txt">Table of n, a(n) for n = 0..1000</a>

%F G.f.: exp( Sum_{n>=1} -sigma(n) * A000204(n) * x^n/n ).

%e G.f.: A(x) = 1 - x - 4*x^2 - x^3 + x^4 + 11*x^5 + 7*x^6 + 25*x^7 +...

%e -log(A(x)) = x + 3*3*x^2/2 + 4*4*x^3/3 + 7*7*x^4/4 + 6*11*x^5/5 + 12*18*x^6/6 +...+ sigma(n)*A000204(n)*x^n/n +...

%e The g.f. equals the product:

%e A(x) = (1-x-x^2) * (1-3*x^2+x^4) * (1-4*x^3-x^6) * (1-7*x^4+x^8) * (1-11*x^5-x^10) * (1-18*x^6+x^12) *...* (1 - Lucas(n)*x^n + (-1)^n*x^(2*n)) *...

%e Positions of zeros form A093519:

%e [11,18,21,25,32,39,43,46,49,54,60,65,67,68,74,76,81,87,88,90,...]

%e which are numbers that are not the sum of two generalized pentagonal numbers.

%o (PARI) /* Subroutine used in PARI programs below: */

%o {Lucas(n)=fibonacci(n-1)+fibonacci(n+1)}

%o (PARI) {a(n)=polcoeff(exp(sum(k=1, n, -sigma(k)*Lucas(k)*x^k/k)+x*O(x^n)), n)}

%o (PARI) {a(n)=polcoeff(prod(m=1, n, 1 - Lucas(m)*x^m + (-1)^m*x^(2*m) +x*O(x^n)), n)}

%Y Cf. A203861, A203850, A156234, A093519.

%K sign

%O 0,3

%A _Paul D. Hanna_, Jan 07 2012

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 22 02:35 EDT 2024. Contains 376090 sequences. (Running on oeis4.)