login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A359593
Multiplicative with a(p^e) = 1 if p divides e, p^e otherwise.
2
1, 2, 3, 1, 5, 6, 7, 8, 9, 10, 11, 3, 13, 14, 15, 1, 17, 18, 19, 5, 21, 22, 23, 24, 25, 26, 1, 7, 29, 30, 31, 32, 33, 34, 35, 9, 37, 38, 39, 40, 41, 42, 43, 11, 45, 46, 47, 3, 49, 50, 51, 13, 53, 2, 55, 56, 57, 58, 59, 15, 61, 62, 63, 1, 65, 66, 67, 17, 69, 70, 71, 72, 73, 74, 75, 19, 77, 78, 79, 5, 81, 82, 83, 21
OFFSET
1,2
COMMENTS
Each term a(n) is a multiple of both A083346(n) and A327938(n).
LINKS
FORMULA
a(n) = n / A359594(n).
Sum_{k=1..n} a(k) ~ c * n^2, where c = (1/2) * Product_{p prime} (1 - p^(p-1)*(p-1)/(p^(2*p)-1)) = 0.4225104173... . - Amiram Eldar, Jan 11 2023
MATHEMATICA
f[p_, e_] := If[Divisible[e, p], 1, p^e]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Jan 09 2023 *)
PROG
(PARI) A359593(n) = { my(f = factor(n)); prod(k=1, #f~, f[k, 1]^(f[k, 2]*!!(f[k, 2]%f[k, 1]))); };
(Python)
from math import prod
from sympy import factorint
def A359593(n): return prod(p**e for p, e in factorint(n).items() if e%p) # Chai Wah Wu, Jan 10 2023
CROSSREFS
Cf. A072873 (positions of 1's), A359594.
Sequence in context: A350389 A368886 A182659 * A358881 A197701 A292770
KEYWORD
nonn,mult
AUTHOR
Antti Karttunen, Jan 09 2023
STATUS
approved