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!)
A353256 Expansion of Sum_{k>=0} x^k * Product_{j=0..k-1} (3 * j + x). 5
1, 0, 1, 3, 19, 171, 2044, 30528, 547390, 11457237, 274198402, 7385438214, 221099038597, 7282925988615, 261763288109884, 10194190355448399, 427609812103844122, 19220373155515189149, 921621193002227307943, 46958377673245988620737 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/2)} 3^(n-2*k) * |Stirling1(n-k,k)|.
MATHEMATICA
a[n_] := Sum[3^(n-2*k) * Abs[StirlingS1[n - k, k]], {k, 0, Floor[n/2]}]; Array[a, 20, 0] (* Amiram Eldar, Apr 09 2022 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, x^k*prod(j=0, k-1, 3*j+x)))
(PARI) a(n) = sum(k=0, n\2, 3^(n-2*k)*abs(stirling(n-k, k, 1)));
CROSSREFS
Cf. A353262.
Sequence in context: A080894 A143768 A256493 * A275283 A349768 A083071
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Apr 08 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 May 9 23:14 EDT 2024. Contains 372354 sequences. (Running on oeis4.)