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.

Showing 1-3 of 3 results.

A128382 Inverse Moebius transform operation performed 24 times on A000594: A051731^24 * A000594.

Original entry on oeis.org

1, 0, 276, -1748, 4854, 0, -16720, 44552, -107295, 0, 534636, -482448, -577714, 0, 1339704, 2528206, -6905910, 0, 10661444, -8484792, -4614720, 0, 18643296, 12296352, -25383005, 0, -75928312, 29226560, 128406654, 0, -52843144, -151821160, 147559536, 0, -81158880
Offset: 1

Views

Author

Gary W. Adamson, Feb 28 2007

Keywords

Comments

Conjecture: given the inverse Moebius transform operation performed any k times (k=1,2,3,...); k=24 is the only such sequence with zeros. A weaker conjecture: "zero" occurs an infinite number of times in A128382.
Multiplicative because A000594 is. Each application of A051731 corresponds to an inverse Moebius transform. - Andrew Howroyd, Aug 03 2018

Crossrefs

Programs

  • Mathematica
    nmax = 40;
    M = Table[If[Mod[n, k] == 0, 1, 0], {n, nmax}, {k, nmax}];
    MatrixPower[M, 24].RamanujanTau[Range[nmax]] (* Jean-François Alcover, Sep 20 2019 *)
  • PARI
    seq(n, k=24)={my(u=vector(n,n,1), v=vector(n,n,ramanujantau(n))); for(i=1, k, v=dirmul(u,v)); v} \\ Andrew Howroyd, Aug 03 2018

Formula

Dirichlet g.f.: Sum_{n>=1} a(n)/n^s = (Sum_{n>=1} A000594(n)/n^s)*zeta(s)^24. - Jianing Song, Aug 04 2018

Extensions

Terms a(11) and beyond from Andrew Howroyd, Aug 03 2018

A128391 A054523^24 * A000594.

Original entry on oeis.org

1, 0, 300, -1724, 4926, 0, -16600, 44600, -100299, 0, 534852, -517200, -577450, 0, 1477800, 2486626, -6905550, 0, 10661852, -8492424, -4980000, 0, 18643800, 13380000, -25030649, 0, -78396200, 28618400, 128407302, 0, -52842448, -150834520, 160455600, 0, -81771600
Offset: 1

Views

Author

Gary W. Adamson, Feb 28 2007

Keywords

Comments

Conjecture: Given A054523^k, k = any positive integer, "zero" appears only in the sequence A018391 (k=24).
Each application of A054523 corresponds to the Dirichlet convolution of A000010 with the sequence on the right. Since both A000594 and A000010 are multiplicative, the resulting sequence will also be multiplicative. - Andrew Howroyd, Aug 03 2018

Crossrefs

Programs

  • Mathematica
    nmax = 40;
    T[n_, k_] := If[Divisible[n, k], EulerPhi[n/k], 0]; T[1, 1] = 1;
    M = Table[T[n, k], {n, 1, nmax}, {k, 1, nmax}];
    MatrixPower[M, 24].RamanujanTau[Range[nmax]] (* Jean-François Alcover, Sep 20 2019 *)
  • PARI
    seq(n, k=24)={my(u=vector(n,n,eulerphi(n)), v=vector(n,n,ramanujantau(n))); for(i=1, k, v=dirmul(u,v)); v} \\ Andrew Howroyd, Aug 03 2018

Formula

A054523^24 as an infinite lower triangular matrix * A000594.

Extensions

a(7) corrected and terms a(11) and beyond from Andrew Howroyd, Aug 03 2018

A128392 A126988^12 * A000594.

Original entry on oeis.org

1, 0, 288, -1736, 4890, 0, -16660, 44576, -103869, 0, 534744, -499968, -577582, 0, 1408320, 2507344, -6905730, 0, 10661648, -8489040, -4798080, 0, 18643548, 12837888, -25207475, 0, -77183496, 28921760, 128406978, 0, -52842796, -151328128, 154006272, 0, -81467400
Offset: 1

Views

Author

Gary W. Adamson, Feb 28 2007

Keywords

Comments

Conjecture: Given A126988^k, k any positive integer, A128392 is the only sequence in the infinite set with zeros.
Each application of A126988 corresponds to the Dirichlet convolution of the natural numbers with the sequence on the right. Since both Ramanujan's tau function A000594 and the natural numbers are multiplicative, the resulting sequence will also be multiplicative. - Andrew Howroyd, Aug 03 2018

Crossrefs

Programs

  • Mathematica
    nmax = 40;
    M = Table[If[Mod[n, m] == 0, n/m, 0], {n, 1, nmax}, {m, 1, nmax}];
    MatrixPower[M, 12].RamanujanTau[Range[nmax]] (* Jean-François Alcover, Sep 20 2019 *)
  • PARI
    seq(n, k=12)={my(u=vector(n,n,n), v=vector(n,n,ramanujantau(n))); for(i=1, k, v=dirmul(u,v)); v} \\ Andrew Howroyd, Aug 03 2018

Formula

A126988 as an infinite lower triangular matrix, * A000594.

Extensions

Terms a(11) and beyond from Andrew Howroyd, Aug 03 2018
Showing 1-3 of 3 results.