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.

A185159 a(n) = 2^n*A122827(n).

Original entry on oeis.org

2, 0, 8, 96, 1248, 18176, 295040, 5294592, 104269312, 2239225856, 52150118400, 1310675066880, 35390943453184, 1022570290544640, 31498715705147392, 1030904079324413952, 35736902010299351040, 1308417934560279396352
Offset: 1

Views

Author

N. J. A. Sloane, Jan 23 2012

Keywords

Crossrefs

Cf. A122827.

Programs

  • Mathematica
    terms = 18; f[t_] = 1 + Sum[n! t^n, {n, 1, terms+1}];
    A122827 = CoefficientList[(f[t] - 1)/f[t]^2 + O[t]^(terms+1), t] // Rest;
    2^Range[terms]*A122827 (* Jean-François Alcover, Feb 13 2019 *)