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!)
A338793 G.f.: Sum_{n>=0} ( Product_{k=1..n} 1 + x*(1+x)^k ) / 2^(n+1). 1
1, 1, 3, 9, 35, 157, 799, 4525, 28131, 189961, 1381731, 10752725, 89024543, 780441893, 7215286619, 70101824033, 713576518099, 7589578829637, 84143768397175, 970341357523749, 11616886603985203, 144132396583436329, 1850345648687946571, 24543468645365759797 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: Sum_{n>=0} ( Product_{k=1..n} 1 + x*(1+x)^k ) / 2^(n+1).
G.f.: Sum_{n>=0} x^n * (1+x)^(n*(n+1)/2) / ( Product_{k=0..n} 2 - (1+x)^k ).
EXAMPLE
G.f.: A(x) = 1 + x + 3*x^2 + 9*x^3 + 35*x^4 + 157*x^5 + 799*x^6 + 4525*x^7 + 28131*x^8 + 189961*x^9 + 1381731*x^10 + 10752725*x^11 + 89024543*x^12 + ...
where
A(x) = 1/2 + (1 + x*(1+x))/2^2 + (1 + x*(1+x))*(1 + x*(1+x)^2)/2^3 + (1 + x*(1+x))*(1 + x*(1+x)^2)*(1 + x*(1+x)^3)/2^4 + (1 + x*(1+x))*(1 + x*(1+x)^2)*(1 + x*(1+x)^3)*(1 + x*(1+x)^4)/2^5 + ... + (Product_{k=1..n} 1 + x*(1+x)^k)/2^(n+1) + ...
Also,
A(x) = 1 + x*(1+x)/(2 - (1+x)) + x^2*(1+x)^3/((2 - (1+x))*(2 - (1+x)^2)) + x^3*(1+x)^6/((2 - (1+x))*(2 - (1+x)^2)*(2 - (1+x)^3)) + x^4*(1+x)^10/((2 - (1+x))*(2 - (1+x)^2)*(2 - (1+x)^3)*(2 - (1+x)^4)) + x^5*(1+x)^15/((2 - (1+x))*(2 - (1+x)^2)*(2 - (1+x)^3)*(2 - (1+x)^4)*(2 - (1+x)^5)) + ... + x^n*(1+x)^(n*(n+1)/2)/(Product_{k=0..n} 2 - (1+x)^k) + ...
PROG
(PARI) {a(n) = polcoeff( sum(m=0, n, x^m * (1+x +x*O(x^n))^(m*(m+1)/2) / prod(k=0, m, 2 - (1+x +x*O(x^n) )^k ) ), n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A030268 A097277 A034428 * A370341 A101880 A222398
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 09 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 May 6 21:30 EDT 2024. Contains 372297 sequences. (Running on oeis4.)