login
A367418
The exponentially odd numbers (A268335) divided by their squarefree kernels (A007947).
3
1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 9, 1, 1, 1, 16, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 9, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 16, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1
OFFSET
1,7
COMMENTS
Analogous to A102631, with the exponentially odd numbers instead of the square numbers (A000290).
All the terms are square numbers.
LINKS
FORMULA
a(n) = A003557(A268335(n)).
a(n) = A268335(n)/A367417(n).
a(n) = A367419(n)^2.
a(n) = A268335(n)^2/A367406(n).
a(n) = A008833(A268335(n)). - Amiram Eldar, Nov 30 2023
MATHEMATICA
s[n_] := n / Times @@ FactorInteger[n][[;; , 1]]; s /@ Select[Range[200], AllTrue[FactorInteger[#][[;; , 2]], OddQ] &]
PROG
(PARI) b(n) = {my(f = factor(n)); prod(i = 1, #f~, if(f[i, 2]%2, f[i, 1]^(f[i, 2]-1), 0)); }
lista(kmax) = {my(b1); for(k = 1, kmax, b1 = b(k); if(b1 > 0, print1(b1, ", "))); }
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Nov 17 2023
STATUS
approved