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.

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

Original entry on oeis.org

1, 1, 8, 89, 1121, 17313, 306588, 6264356, 144123978, 3710660797, 105517536463, 3289885612007, 111534718552758, 4086488012360688, 160872398645645560, 6772203940050042913, 303547711924399057195, 14433006933542826499824
Offset: 0

Views

Author

Seiichi Manyama, Nov 18 2017

Keywords

Comments

This sequence is obtained from the generalized Euler transform in A266964 by taking f(n) = -n, g(n) = -n^n.

Crossrefs

Programs

  • PARI
    N=66; x='x+O('x^N); Vec(prod(k=1, N, (1+k^k*x^k)^k))

Formula

a(0) = 1 and a(n) = (1/n) * Sum_{k=1..n} b(k)*a(n-k) where b(n) = Sum_{d|n} d^(2+n)*(-1)^(1+n/d).