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.

A299167 Expansion of 1/(1 - x*Product_{k>=1} (1 + x^k)^k).

Original entry on oeis.org

1, 1, 2, 5, 14, 36, 94, 243, 628, 1619, 4178, 10776, 27793, 71682, 184879, 476832, 1229830, 3171942, 8180989, 21100215, 54421187, 140361900, 362018270, 933709453, 2408202606, 6211182512, 16019743522, 41317765457, 106565859669, 274852289679, 708892898170, 1828360759013, 4715667307920
Offset: 0

Views

Author

Ilya Gutkovskiy, Feb 04 2018

Keywords

Crossrefs

Antidiagonal sums of A277938.

Programs

  • Mathematica
    nmax = 32; CoefficientList[Series[1/(1 - x Product[(1 + x^k)^k, {k, 1, nmax}]), {x, 0, nmax}], x]

Formula

G.f.: 1/(1 - x*Product_{k>=1} (1 + x^k)^k).
a(0) = 1; a(n) = Sum_{k=1..n} A026007(k-1)*a(n-k).