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

A384049 The number of integers k from 1 to n such that the greatest divisor of k that is a unitary divisor of n is cubefree.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 7, 9, 10, 11, 12, 13, 14, 15, 15, 17, 18, 19, 20, 21, 22, 23, 21, 25, 26, 26, 28, 29, 30, 31, 31, 33, 34, 35, 36, 37, 38, 39, 35, 41, 42, 43, 44, 45, 46, 47, 45, 49, 50, 51, 52, 53, 52, 55, 49, 57, 58, 59, 60, 61, 62, 63, 63, 65, 66, 67, 68
Offset: 1

Views

Author

Amiram Eldar, May 18 2025

Keywords

Crossrefs

Unitary analog of A254926.
The number of integers k from 1 to n such that the greatest divisor of k that is a unitary divisor of n is: A047994 (1), A384048 (squarefree), this sequence (cubefree), A384050 (powerful), A384051 (cubefull), A384052 (square), A384053 (cube), A384054 (exponentially odd), A384055 (odd), A384056 (power of 2), A384057 (3-smooth), A384058 (5-rough).

Programs

  • Mathematica
    f[p_, e_] := p^e - If[e < 3, 0, 1]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a,100]
  • PARI
    a(n) = {my(f = factor(n)); prod(i = 1, #f~, f[i,1]^f[i,2] - if(f[i,2] < 3, 0, 1));}

Formula

Multiplicative with a(p^e) = p^e if e <= 2, and p^e - 1 if e >= 3.
a(n) = n * A047994(n) / A384051(n).
a(n) = A047994(A360540(n)) * A360539(n).
Dirichlet g.f.: zeta(s-1) * zeta(s) * Product_{p prime} (1 - 1/p^s - 1/p^(3*s) + 1/p^(4*s-1)).
Sum_{k=1..n} a(k) ~ c * n^2 / 2, where c = Product_{p prime} (1 - 1/(p^5*(p+1))) = 0.988504... (A065468).

A078083 Continued fraction expansion of Product_{p prime} (1 - 1/(p^5*(p+1))).

Original entry on oeis.org

0, 1, 85, 1, 96, 1, 11, 1, 2, 6, 3, 1, 1, 3, 1, 1, 3, 2, 1, 18, 1, 2, 1, 7, 1, 2, 1, 1, 2, 2, 1, 228, 1, 11, 1, 2, 2, 1, 8, 1, 82, 1, 1, 1, 4, 11, 1, 1, 1, 1, 3, 1, 3, 1, 3, 4, 1, 1, 4, 5, 8, 2, 1, 1, 6, 2, 1, 1, 2, 1, 2, 1, 3, 15, 2, 4, 1, 43, 3, 3, 4, 1, 4, 72, 54, 1, 1, 1, 70, 1, 80, 1
Offset: 0

Views

Author

Benoit Cloitre, Dec 02 2002

Keywords

Crossrefs

Cf. A065468.

Programs

  • PARI
    contfrac(prodeulerrat(1 - 1/(p^5*(p+1)))) \\ Amiram Eldar, Mar 13 2021

Extensions

Offset changed by Andrew Howroyd, Jul 02 2024
Showing 1-2 of 2 results.