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.

A346545 E.g.f.: Product_{k>=1} 1 / (1 - x^k)^(exp(x)/k).

Original entry on oeis.org

1, 1, 5, 26, 175, 1384, 12933, 135050, 1582901, 20380208, 286577757, 4352682256, 71247772121, 1244923243966, 23166410620637, 456940648889070, 9521696033968393, 208851154175983608, 4812156417656806393, 116112764199821653284, 2928658457243240595901, 77042063713731887400418
Offset: 0

Views

Author

Ilya Gutkovskiy, Sep 16 2021

Keywords

Comments

Exponential transform of A002746.

Crossrefs

Programs

  • Mathematica
    nmax = 21; CoefficientList[Series[Product[1/(1 - x^k)^(Exp[x]/k), {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]!
    nmax = 21; CoefficientList[Series[Exp[Exp[x] Sum[DivisorSigma[0, k] x^k/k, {k, 1, nmax}]], {x, 0, nmax}], x] Range[0, nmax]!
    A002746[n_] := Sum[Binomial[n, k] DivisorSigma[0, k] (k - 1)!, {k, 1, n}]; a[0] = 1; a[n_] := a[n] = Sum[Binomial[n - 1, k - 1] A002746[k] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 21}]

Formula

E.g.f.: exp( exp(x) * Sum_{k>=1} d(k) * x^k / k ).
a(0) = 1; a(n) = Sum_{k=1..n} binomial(n-1,k-1) * A002746(k) * a(n-k).