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.

A298419 a(n) = n*a(n-1) - a(n-2) + a([n/2]), where a(0) = 1, a(1) = 1, a(2) = 1.

Original entry on oeis.org

1, 1, 1, 3, 12, 58, 339, 2318, 18217, 161647, 1598311, 17419832, 207440012, 2679300663, 37302771588, 556862275475, 8872493654229, 150275529864635, 2696087044070848, 51075378307643124, 1018811479110389943, 21343965683012143990, 468548433547174197669
Offset: 0

Views

Author

Clark Kimberling, Feb 11 2018

Keywords

Crossrefs

Cf. A298338.

Programs

  • Mathematica
    a[0] = 1; a[1] = 1; a[2] = 1;
    a[n_] := a[n] = n a[n - 1] - a[n - 2] + a[Floor[n/2]];
    Table[a[n], {n, 0, 30}]  (* A298419 *)