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.

A007557 Shifts left when inverse Moebius transform applied twice.

Original entry on oeis.org

1, 1, 3, 5, 10, 12, 24, 26, 43, 52, 78, 80, 133, 135, 189, 219, 295, 297, 428, 430, 584, 642, 804, 806, 1100, 1123, 1395, 1494, 1856, 1858, 2428, 2430, 2977, 3143, 3739, 3811, 4790, 4792, 5654, 5930, 7072, 7074, 8656
Offset: 1

Views

Author

Keywords

Comments

Equals eigensequence of triangle A127170 (the square of the inverse Mobius transform). - Gary W. Adamson, Apr 27 2009

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • Mathematica
    a[n_] := a[n] = Sum[ DivisorSigma[0, (n - 1)/d]*a[d], {d, Divisors[n - 1]}]; a[1] = 1; Table[a[n], {n, 1, 43}] (* Jean-François Alcover, Dec 12 2011, after Vladeta Jovovic *)

Formula

a(n+1) = Sum_{d divides n} tau(n/d)*a(d). - Vladeta Jovovic, Jan 24 2003
From Ilya Gutkovskiy, Apr 30 2019: (Start)
G.f. A(x) satisfies: A(x) = x * (1 + Sum_{i>=1} Sum_{j>=1} A(x^(i*j))).
G.f.: A(x) = Sum_{n>=1} a(n)*x^n = x * (1 + Sum_{i>=1} Sum_{j>=1} a(i)*x^(i*j)/(1 - x^(i*j))). (End)

Extensions

More terms from Vladeta Jovovic, Jan 24 2003