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!)
A321089 G.f.: Sum_{n>=0} ((1+x)^(n+1) - 1)^n. 1
1, 2, 10, 82, 928, 13406, 235690, 4883702, 116548222, 3148151702, 94950591878, 3162966582742, 115334767261792, 4569294561813770, 195438629679894238, 8975996556375735458, 440572146080811981406, 23015418712779922737206, 1274980039012724226987966, 74655326188457739033712062, 4607114081638141934903219532, 298862442692043953057588327202 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
Sum_{n>=0} (1+x)^(n*(n+1)) / (1 + (1+x)^n)^(n+1).
a(n) ~ c * d^n * n! / sqrt(n), where d = A317855 = 3.1610886538654288138301722... and c = 0.8785394171057422507960514834733179025314463... - Vaclav Kotesovec, Oct 04 2020
EXAMPLE
G.f.: A(x) = 1 + 2*x + 10*x^2 + 82*x^3 + 928*x^4 + 13406*x^5 + 235690*x^6 + 4883702*x^7 + 116548222*x^8 + ...
PROG
(PARI) {a(n) = polcoeff( sum(k=0, n, ((1+x +x*O(x^n))^(k+1) - 1)^k), n)}
for(n=0, 25, print1(a(n), ", "))
(PARI) /* From e.g.f. infinite series: */
\p200 \\ set precision
{A = Vec(round( sum(n=0, 600, 1./(1 + (1+x +O(x^26))^(-n))^(n+1)) ))}
for(n=0, #A-1, print1(A[n+1], ", "))
CROSSREFS
Sequence in context: A062396 A218294 A286797 * A112487 A089469 A281547
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 04 2018
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 24 17:29 EDT 2024. Contains 371962 sequences. (Running on oeis4.)