login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A084371 Squarefree kernels of powerful numbers (A001694). 3
1, 2, 2, 3, 2, 5, 3, 2, 6, 7, 2, 6, 3, 10, 6, 11, 5, 2, 6, 13, 14, 10, 6, 15, 3, 2, 6, 17, 6, 7, 19, 14, 10, 6, 21, 22, 10, 2, 23, 6, 5, 6, 15, 26, 3, 14, 10, 29, 6, 30, 31, 22, 6, 10, 2, 33, 15, 6, 34, 35, 6, 21, 11, 26, 37, 14, 38, 39, 14, 10, 41, 6, 42, 30, 43, 22, 6, 10 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Rafael Jakimczuk, The kernel of powerful numbers, International Mathematical Forum, Vol. 12, No. 15 (2017), pp. 721-730, Remark 2.5, p. 729.
FORMULA
a(n) = A007947(A001694(n)).
From Amiram Eldar, May 13 2023: (Start)
Sum_{a(k) < x} a(k) = (1/2) * x + o(x) (Jakimczuk, 2017).
Sum_{k=1..n} a(k) ~ c * n^2, where c = (zeta(3)/zeta(3/2))^2/2 = 0.1058641473... . (End)
EXAMPLE
A001694(11) = 64 = 2^6 -> a(11) = 2,
A001694(12) = 72 = 2^3 * 3^2 -> a(12) = 2*3 = 6,
A001694(13) = 81 = 3^4 -> a(13) = 3.
MATHEMATICA
s = {1}; Do[f = FactorInteger[n]; If[Min @ f[[;; , 2]] > 1, AppendTo[s, Times @@ f[[;; , 1]]]], {n, 2, 10^4}]; s (* Amiram Eldar, Aug 22 2019 *)
PROG
(PARI) rad(n) = factorback(factorint(n)[, 1]); \\ A007947
lista(nn) = apply(x->rad(x), select(x->ispowerful(x), [1..nn])); \\ Michel Marcus, Aug 22 2019
CROSSREFS
Sequence in context: A076403 A157987 A025478 * A025476 A347731 A331532
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jun 23 2003
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)