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.

A309618 a(n) = Sum_{k=0..floor(n/2)} k! * 2^k * (n - 2*k)!.

Original entry on oeis.org

1, 1, 4, 8, 36, 140, 832, 5376, 42432, 374592, 3720960, 40694784, 486679296, 6310114560, 88168366080, 1320468480000, 21101183631360, 358354687426560, 6444941507297280, 122367252835860480, 2445878526994022400, 51337143210820239360, 1128918790687649955840
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 10 2019

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[k!*2^k*(n-2*k)!, {k, 0, Floor[n/2]}], {n, 0, 25}]
    nmax = 25; CoefficientList[Series[Sum[k!*x^k, {k, 0, nmax}] * Sum[k!*2^k*x^(2 k), {k, 0, nmax}], {x, 0, nmax}], x]

Formula

G.f.: B(x)*B(2*x^2), where B(x) is g.f. of A000142.
a(n) ~ n! * (1 + 2/n^2 + 2/n^3 + 10/n^4 + 50/n^5 + 250/n^6 + 1442/n^7 + 9514/n^8 + 68882/n^9 + 539098/n^10 + ...), for coefficients see A326983.