cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A356608 a(n) = n! * Sum_{k=0..floor(n/4)} (n - 4*k)^k/(24^k * (n - 4*k)!).

Original entry on oeis.org

1, 1, 1, 1, 1, 6, 31, 106, 281, 1261, 13861, 106261, 558361, 2709136, 32802771, 447762316, 4093711441, 28011714641, 293624974441, 5549250905281, 80454378591121, 815886496908946, 8379058314620071, 168672787637953446, 3514729162490432041, 51656083670790267901
Offset: 0

Views

Author

Seiichi Manyama, Aug 18 2022

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := n! * Sum[(n - 4*k)^k/(24^k*(n - 4*k)!), {k, 0, Floor[n/4]}]; a[0] = 1; Array[a, 26, 0] (* Amiram Eldar, Aug 19 2022 *)
  • PARI
    a(n) = n!*sum(k=0, n\4, (n-4*k)^k/(24^k*(n-4*k)!));
    
  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, x^k/(k!*(1-k*x^4/24)))))

Formula

E.g.f.: Sum_{k>=0} x^k / (k! * (1 - k*x^4/24)).