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.

A327837 Decimal expansion of the asymptotic mean of the number of exponential divisors function (A049419).

Original entry on oeis.org

1, 6, 0, 2, 3, 1, 7, 1, 0, 2, 3, 0, 5, 4, 1, 8, 0, 5, 2, 3, 4, 9, 6, 2, 6, 3, 1, 5, 6, 2, 1, 1, 6, 1, 0, 0, 3, 7, 7, 6, 9, 3, 9, 4, 9, 5, 7, 8, 5, 5, 7, 2, 7, 3, 7, 7, 4, 6, 5, 3, 5, 2, 8, 5, 9, 8, 7, 8, 8, 8, 8, 6, 0, 2, 1, 6, 3, 3, 5, 4, 7, 2, 7, 5, 6, 6, 7, 3, 3, 9, 0, 4, 9, 4, 8, 8, 0, 6, 4, 1, 8, 0, 7, 5, 7
Offset: 1

Views

Author

Amiram Eldar, Sep 27 2019

Keywords

Examples

			1.602317102305418052349626315621161003776939495785572...
		

Crossrefs

Cf. A059956 (constant for unitary divisors), A306071 (bi-unitary), A327576 (infinitary).

Programs

  • Mathematica
    $MaxExtraPrecision = 1500; m = 1500; em = 500; f[x_] := 1 + Log[1 + Sum[x^e * (DivisorSigma[0, e] - DivisorSigma[0, e - 1]), {e, 2, em}]]; c = Rest[ CoefficientList[Series[f[x], {x, 0, m}], x] * Range[0, m] ]; RealDigits[ Exp[NSum[Indexed[c, k] * PrimeZetaP[k]/k, {k, 2, m}, NSumTerms -> m, WorkingPrecision -> m]], 10, 100][[1]]

Formula

Equals lim_{k->oo} A145353(k)/k.
Equals Product_{p prime} (1 + Sum_{e >= 2} p^(-e) * (d(e) - d(e-1))), where d(e) is the number of divisors of e (A000005).
Equals Product_{p prime} (1 - 1/p) * (2 - (log(p-1) + QPolyGamma(0, 1, 1/p)) / log(p)). - Vaclav Kotesovec, Feb 27 2023
From Amiram Eldar, Dec 24 2024: (Start)
Equals lim_{m->oo} (1/m) * Sum_{k=1..m} k/uphi(k) = lim_{m->oo} (1/m) * Sum_{k=1..m} A319677(k)/A319676(k), where uphi(k) is the unitary totient function (A047994).
Equals lim_{m->oo} (1/log(m)) * Sum_{k=1..m} 1/uphi(k) = lim_{m->oo} (1/log(m)) * A379517(m)/A379518(m).
Equals lim_{m->oo} (1/m) * Sum_{k=1..m} A361967(k).
Equals Product_{p prime} ((1-1/p) * (1 + Sum_{k>=1} 1/(p^k-1))).
Equals Product_{p prime} (1 + (1-1/p) * Sum_{k>=1} 1/(p^k*(p^k-1))). (End)

Extensions

More digits from Vaclav Kotesovec, Jun 13 2021

A379518 Denominators of the partial sums of the reciprocals of the unitary totient function (A047994).

Original entry on oeis.org

1, 1, 2, 6, 12, 12, 4, 28, 56, 56, 280, 840, 280, 840, 210, 42, 336, 336, 1008, 1008, 1008, 5040, 55440, 55440, 55440, 55440, 720720, 720720, 102960, 102960, 102960, 3191760, 3191760, 199485, 1595880, 797940, 199485, 398970, 1595880, 11171160, 1117116, 279279
Offset: 1

Views

Author

Amiram Eldar, Dec 24 2024

Keywords

Crossrefs

Cf. A047994, A177754, A370899, A379517 (numerators), A379520.

Programs

  • Mathematica
    uphi[n_] := Times @@ (-1 + Power @@@ FactorInteger[n]); uphi[1] = 1; Denominator[Accumulate[Table[1/uphi[n], {n, 1, 50}]]]
  • PARI
    uphi(n) = {my(f = factor(n)); prod(i = 1, #f~, -1 + f[i, 1]^f[i, 2]);}
    list(nmax) = {my(s = 0); for(k = 1, nmax, s += 1 / uphi(k); print1(denominator(s), ", "))};

Formula

a(n) = denominator(Sum_{k=1..n} 1/A047994(k)).

A379519 Numerators of the partial alternating sums of the reciprocals of the unitary totient function (A047994).

Original entry on oeis.org

1, 0, 1, 1, 5, -1, 1, -5, 11, -31, -71, -211, -47, -281, -22, -29, -359, -569, -1427, -1847, -1427, -1931, -18721, -22681, -20371, -24991, -297163, -37467, -34607, -44617, -125843, -4141373, -3769001, -2117233, -327013, -2117233, -6041389, -6662009, -774568, -3297757
Offset: 1

Views

Author

Amiram Eldar, Dec 24 2024

Keywords

Examples

			Fractions begin with 1, 0, 1/2, 1/6, 5/12, -1/12, 1/12, -5/84, 11/168, -31/168, -71/840, -211/840, ...
		

Crossrefs

Programs

  • Mathematica
    uphi[n_] := Times @@ (-1 + Power @@@ FactorInteger[n]); uphi[1] = 1; Numerator[Accumulate[Table[(-1)^(n+1)/uphi[n], {n, 1, 50}]]]
  • PARI
    uphi(n) = {my(f = factor(n)); prod(i = 1, #f~, -1 + f[i, 1]^f[i, 2]);}
    list(nmax) = {my(s = 0); for(k = 1, nmax, s += (-1)^(k+1) / uphi(k); print1(numerator(s), ", "))};

Formula

a(n) = numerator(Sum_{k=1..n} (-1)^(k+1)/A047994(k)).
a(n)/A379520(n) = T * log(n) + U + O(log(n)^(5/3) / n^u), where u > 0, T = A327837 * (2/(A065442 + 1) - 1), and U is a constant.
Showing 1-3 of 3 results.