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.

A336608 Sum_{n>=0} a(n) * x^n / (n!)^2 = exp(-x) / BesselJ(0,2*sqrt(x)).

Original entry on oeis.org

1, 0, 1, 4, 51, 856, 21435, 725796, 32132499, 1800176176, 124511280723, 10420458131260, 1037868062069113, 121317006426807192, 16446390218708245393, 2559445829942874207804, 453188354421968867989395, 90587738500599611033753184
Offset: 0

Views

Author

Ilya Gutkovskiy, Jul 27 2020

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 17; CoefficientList[Series[Exp[-x]/BesselJ[0, 2 Sqrt[x]], {x, 0, nmax}], x] Range[0, nmax]!^2
    A000275[0] = 1; A000275[n_] := A000275[n] = -Sum[(-1)^(n - k) Binomial[n, k]^2 A000275[k], {k, 0, n - 1}]; a[n_] := n! Sum[(-1)^(n - k) Binomial[n, k] A000275[k]/k!, {k, 0, n}]; Table[a[n], {n, 0, 17}]

Formula

a(n) = n! * Sum_{k=0..n} (-1)^(n-k) * binomial(n,k) * A000275(k) / k!.