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!)
A355471 Expansion of Sum_{k>=0} (x/(1 - k^2 * x))^k. 3
1, 1, 2, 10, 77, 808, 11257, 196072, 4136897, 103755904, 3034193921, 101901347944, 3885951145969, 166605168800704, 7961498177012993, 420976047757358776, 24475992585921169553, 1556007778666449968128, 107625967130820901112833 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=1..n} k^(2*(n-k)) * binomial(n-1,k-1) for n > 0.
MATHEMATICA
Flatten[{1, Table[Sum[Binomial[n-1, k-1] * k^(2*(n-k)), {k, 1, n}], {n, 1, 20}]}] (* Vaclav Kotesovec, Feb 16 2023 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, (x/(1-k^2*x))^k))
(PARI) a(n) = if(n==0, 1, sum(k=1, n, k^(2*(n-k))*binomial(n-1, k-1)));
CROSSREFS
Sequence in context: A292632 A095789 A134980 * A240599 A367142 A212381
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 03 2022
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 March 28 16:34 EDT 2024. Contains 371254 sequences. (Running on oeis4.)