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.

A307305 Self-composition of the number of divisors function (A000005).

Original entry on oeis.org

1, 4, 12, 34, 92, 246, 640, 1660, 4264, 10914, 27732, 70247, 177466, 447570, 1126344, 2828465, 7089391, 17746456, 44384884, 110927184, 276993616, 691007612, 1722214602, 4289021667, 10675557184, 26561494820, 66063726382, 164248795485, 408168287028, 1013819012498
Offset: 1

Views

Author

Ilya Gutkovskiy, Apr 01 2019

Keywords

Crossrefs

Programs

  • Mathematica
    g[x_] := g[x] = Sum[x^k/(1 - x^k), {k, 1, 30}]; a[n_] := a[n] = SeriesCoefficient[g[g[x]], {x, 0, n}]; Table[a[n], {n, 30}]

Formula

G.f.: g(g(x)), where g(x) = Sum_{k>=1} x^k/(1 - x^k) is the g.f. of A000005.