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!)
A365526 a(n) = Sum_{k=0..floor((n-1)/4)} Stirling2(n,4*k+1). 2
0, 1, 1, 1, 1, 2, 16, 141, 1051, 6953, 42571, 247886, 1401676, 7868005, 45210257, 277899961, 1917140421, 15186484134, 135259346092, 1295096363273, 12821558136891, 128268683204737, 1283599391456735, 12817818177339530, 127998022119881272 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
Let A(0)=1, B(0)=0, C(0)=0 and D(0)=0. Let B(n+1) = Sum_{k=0..n} binomial(n,k)*A(k), C(n+1) = Sum_{k=0..n} binomial(n,k)*B(k), D(n+1) = Sum_{k=0..n} binomial(n,k)*C(k) and A(n+1) = Sum_{k=0..n} binomial(n,k)*D(k). A365525(n) = A(n), a(n) = B(n), A365527(n) = C(n) and A099948(n) = D(n).
G.f.: Sum_{k>=0} x^(4*k+1) / Product_{j=1..4*k+1} (1-j*x).
MATHEMATICA
a[n_] := Sum[StirlingS2[n, 4*k+1], {k, 0, Floor[(n-1)/4]}]; Array[a, 25, 0] (* Amiram Eldar, Sep 13 2023 *)
PROG
(PARI) a(n) = sum(k=0, (n-1)\4, stirling(n, 4*k+1, 2));
CROSSREFS
Sequence in context: A056662 A348618 A151402 * A199565 A003768 A214767
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 08 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 3 08:32 EDT 2024. Contains 372207 sequences. (Running on oeis4.)