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.

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

Original entry on oeis.org

1, 1, 2, 6, 17, 48, 132, 365, 1003, 2759, 7583, 20843, 57283, 157442, 432719, 1189317, 3268818, 8984318, 24693343, 67869557, 186539251, 512702559, 1409161449, 3873076007, 10645137706, 29258128633, 80415877302, 221022792843, 607480469466, 1669658209311, 4589050472041
Offset: 0

Views

Author

Ilya Gutkovskiy, Feb 04 2018

Keywords

Crossrefs

Antidiagonal sums of A255961.

Programs

  • Maple
    b:= proc(n, k) option remember; `if`(n=0, 1, k*add(
           b(n-j, k)*numtheory[sigma][2](j), j=1..n)/n)
        end:
    a:= n-> add(b(n-j, j), j=0..n):
    seq(a(n), n=0..35);  # Alois P. Heinz, Feb 04 2018
  • Mathematica
    nmax = 30; CoefficientList[Series[1/(1 - x Product[1/(1 - x^k)^k, {k, 1, nmax}]), {x, 0, nmax}], x]

Formula

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