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!)
A360018 Expansion of Sum_{k>=0} (k * x * (1 + (k * x)^2))^k. 2
1, 1, 4, 28, 288, 3854, 63104, 1220729, 27248128, 689446671, 19501121536, 609753349945, 20883798220800, 777529328875208, 31266494467227648, 1350520199148276667, 62360172065142341632, 3065369553470816704832, 159818389764050045894656 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/3)} (n-2*k)^n * binomial(n-2*k,k).
a(n) ~ c * (1-2*r)^(2*(1-r)*n) * n^n / ((1-3*r)^((1-3*r)*n) * r^(r*n)), where r = 0.06730326916452804898090832100482072129668759014637687455288... is the root of the equation (1-2*r) * log((1-3*r)^3 / (r*(1-2*r)^2)) = 2 and c = 0.77456580764856204420602709595934338976380573814558378938814706465915... - Vaclav Kotesovec, Feb 20 2023
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, (k*x*(1+(k*x)^2))^k))
(PARI) a(n) = sum(k=0, n\3, (n-2*k)^n*binomial(n-2*k, k));
CROSSREFS
Cf. A360730.
Sequence in context: A138208 A071212 A090353 * A360832 A201595 A076729
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 19 2023
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 8 03:50 EDT 2024. Contains 372317 sequences. (Running on oeis4.)