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-4 of 4 results.

A061255 Euler transform of Euler totient function phi(n), cf. A000010.

Original entry on oeis.org

1, 1, 2, 4, 7, 13, 21, 37, 60, 98, 157, 251, 392, 612, 943, 1439, 2187, 3293, 4930, 7330, 10839, 15935, 23315, 33933, 49170, 70914, 101861, 145713, 207638, 294796, 417061, 588019, 826351, 1157651, 1616849, 2251623, 3126775, 4330271, 5981190
Offset: 0

Views

Author

Vladeta Jovovic, Apr 21 2001

Keywords

Crossrefs

Programs

  • Mathematica
    nn = 20; b = Table[EulerPhi[n], {n, nn}]; CoefficientList[Series[Product[1/(1 - x^m)^b[[m]], {m, nn}], {x, 0, nn}], x] (* T. D. Noe, Jun 19 2012 *)

Formula

G.f.: Product_{k>=1} (1 - x^k)^(-phi(k)).
a(n) = 1/n*Sum_{k=1..n} a(n-k)*b(k), n>1, a(0)=1, b(k) = Sum_{d|k} d*phi(d), cf. A057660.
Logarithmic derivative yields A057660 (equivalent to above formula). - Paul D. Hanna, Sep 05 2012
a(n) ~ exp(3^(4/3) * Zeta(3)^(1/3) * n^(2/3) / (2^(1/3) * Pi^(2/3)) - 1/6) * A^2 * Zeta(3)^(1/9) / (2^(4/9) * 3^(7/18) * Pi^(8/9) * n^(11/18)), where A is the Glaisher-Kinkelin constant A074962. - Vaclav Kotesovec, Mar 23 2018
G.f.: exp(Sum_{k>=1} (sigma_2(k^2)/sigma_1(k^2)) * x^k/k). - Ilya Gutkovskiy, Apr 22 2019

A299069 Expansion of Product_{k>=1} (1 + x^k)^phi(k), where phi() is the Euler totient function (A000010).

Original entry on oeis.org

1, 1, 1, 3, 4, 8, 11, 19, 30, 44, 69, 103, 157, 229, 341, 491, 722, 1038, 1488, 2128, 3015, 4267, 5989, 8407, 11713, 16289, 22523, 31097, 42729, 58569, 80003, 108957, 147983, 200383, 270693, 364631, 490105, 656961, 878775, 1172653, 1561626, 2074982, 2751648, 3641536, 4810009, 6341365, 8344967
Offset: 0

Views

Author

Ilya Gutkovskiy, Mar 09 2018

Keywords

Crossrefs

Programs

  • Maple
    b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0, add(
          binomial(numtheory[phi](i), j)*b(n-i*j, i-1), j=0..n/i)))
        end:
    a:= n-> b(n$2):
    seq(a(n), n=0..50);  # Alois P. Heinz, Mar 09 2018
  • Mathematica
    nmax = 46; CoefficientList[Series[Product[(1 + x^k)^EulerPhi[k], {k, 1, nmax}], {x, 0, nmax}], x]
    a[n_] := a[n] = If[n == 0, 1, Sum[Sum[(-1)^(k/d + 1) d EulerPhi[d], {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 46}]

Formula

G.f.: Product_{k>=1} (1 + x^k)^A000010(k).
a(n) ~ exp(3^(5/3) * Zeta(3)^(1/3) * n^(2/3) / (2*Pi^(2/3))) * Zeta(3)^(1/6) / (2^(1/3) * 3^(1/6) * Pi^(5/6) * n^(2/3)). - Vaclav Kotesovec, Mar 23 2018

A318976 Expansion of e.g.f. Product_{k>=1} ((1 + x^k)/(1 - x^k))^(phi(k)/k), where phi is the Euler totient function A000010.

Original entry on oeis.org

1, 2, 6, 32, 196, 1512, 13384, 135872, 1545744, 19441952, 268386784, 4018603008, 65021744704, 1127284876928, 20880206388864, 410781080941568, 8561002328678656, 188224613741879808, 4355496092560324096, 105752112730661347328, 2688539359466319184896
Offset: 0

Views

Author

Vaclav Kotesovec, Sep 06 2018

Keywords

Comments

Convolution of A088009 and A000262.

Crossrefs

Programs

  • Mathematica
    nmax = 20; CoefficientList[Series[Product[((1+x^k)/(1-x^k))^(EulerPhi[k]/k), {k, 1, nmax}], {x, 0, nmax}], x] * Range[0, nmax]!
    nmax = 20; CoefficientList[Series[E^(x*(2 + x)/(1 - x^2)), {x, 0, nmax}], x] * Range[0, nmax]!

Formula

E.g.f.: exp(x*(2 + x)/(1 - x^2)).
a(n) ~ 2^(-3/4) * 3^(1/4) * exp(sqrt(6*n) - n - 1/2) * n^(n - 1/4).

A318977 Expansion of e.g.f. Product_{k>=1} ((1 + x^k)/(1 - x^k))^(tau(k)/k), where tau is A000005.

Original entry on oeis.org

1, 2, 8, 44, 292, 2296, 21472, 221168, 2554544, 32617952, 452957056, 6788855872, 110098330048, 1900192498304, 34971968379392, 683452436531456, 14097619892177152, 306168410773570048, 6998327049216231424, 167369475021548506112, 4187842602663179396096
Offset: 0

Views

Author

Vaclav Kotesovec, Sep 06 2018

Keywords

Comments

Convolution of A318696 and A318695.

Crossrefs

Programs

  • Mathematica
    nmax = 20; CoefficientList[Series[Product[((1+x^k)/(1-x^k))^(DivisorSigma[0, k]/k), {k, 1, nmax}], {x, 0, nmax}], x] * Range[0, nmax]!
Showing 1-4 of 4 results.