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!)
A338180 G.f.: Sum_{n>=0} x^n * Product_{k=0..n-1} ( 1 + (1+x)^(2*n+k) ). 2
1, 2, 6, 27, 152, 982, 7170, 57745, 506426, 4787074, 48377495, 519377787, 5892707464, 70345730334, 880325589031, 11511926195652, 156873359666502, 2222244083243157, 32654408362860528, 496783112039964012, 7811234596327634934, 126743609828281136160, 2119210893034560256558 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: Sum_{n>=0} x^n * Product_{k=0..n-1} (1 + (1+x)^(2*n+k)).
G.f.: Sum_{n>=0} x^n * (1+x)^(n*(5*n-1)/2) / ( Product_{k=0..n} 1 - x*(1+x)^(2*n+k) ).
EXAMPLE
G.f.: A(x) = 1 + 2*x + 6*x^2 + 27*x^3 + 152*x^4 + 982*x^5 + 7170*x^6 + 57745*x^7 + 506426*x^8 + 4787074*x^9 + 48377495*x^10 + ...
where
A(x) = 1 + x*(1 + (1+x)^2) + x^2*(1 + (1+x)^4)*(1 + (1+x)^5) + x^3*(1 + (1+x)^6)*(1 + (1+x)^7)*(1 + (1+x)^8) + x^4*(1 + (1+x)^8)*(1 + (1+x)^9)*(1 + (1+x)^10)*(1 + (1+x)^11) + x^5*(1 + (1+x)^10)*(1 + (1+x)^11)*(1 + (1+x)^12)*(1 + (1+x)^13)*(1 + (1+x)^14) + ... + x^n*Product_{k=0..n-1} (1 + (1+x)^(2*n+k)) + ...
Also
A(x) = 1/(1 - x) + x*(1+x)^2/((1 - x*(1+x)^2)*(1 - x*(1+x)^3)) + x^2*(1+x)^9/((1 - x*(1+x)^4)*(1 - x*(1+x)^5)*(1 - x*(1+x)^6)) + x^3*(1+x)^21/((1 - x*(1+x)^6)*(1 - x*(1+x)^7)*(1 - x*(1+x)^8)*(1 - x*(1+x)^9)) + x^4*(1+x)^38/((1 - x*(1+x)^8)*(1 - x*(1+x)^9)*(1 - x*(1+x)^10)*(1 - x*(1+x)^11)*(1 - x*(1+x)^12)) + ... + x^n*(1+x)^(n*(5*n-1)/2)/(Product_{k=0..n} 1 - x*(1+x)^(2*n+k)) + ...
MATHEMATICA
nmax = 25; CoefficientList[Series[Sum[x^n * Product[1 + (1+x)^(2*n+k), {k, 0, n-1}], {n, 0, nmax-1}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Oct 16 2020 *)
PROG
(PARI) {a(n) = polcoeff( sum(m=0, n, x^m * prod(k=0, m-1, 1 + (1+x)^(2*m+k) +x*O(x^n)) ), n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) {a(n) = polcoeff( sum(m=0, n, x^m * (1+x +x*O(x^n))^(m*(5*m-1)/2) / prod(k=0, m, 1 - x*(1+x)^(2*m+k) +x*O(x^n)) ), n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Cf. A338179.
Sequence in context: A340356 A363456 A118192 * A307595 A058133 A306857
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 15 2020
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 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)