The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A328245 Numbers whose second arithmetic derivative (A068346) is a squarefree number (A005117), but the first derivative (A003415) is not. 7
14, 46, 50, 65, 77, 86, 94, 99, 122, 125, 138, 146, 207, 230, 302, 334, 343, 346, 375, 426, 531, 546, 554, 581, 590, 626, 662, 682, 686, 710, 717, 718, 725, 734, 747, 750, 819, 842, 869, 875, 931, 965, 1002, 1041, 1083, 1130, 1145, 1146, 1166, 1175, 1202, 1241, 1265, 1310, 1331, 1337, 1349, 1375, 1418, 1461, 1466, 1469, 1501, 1529, 1541 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
For n = 14, its first arithmetic derivative, A003415(14) = 9 = 3^2 is not squarefree, while the second arithmetic derivative, A003415(9) = 6 = 2* 3 is, thus 14 is included in this sequence.
PROG
(PARI)
A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
isA328245(n) = { my(u=A003415(n)); (!issquarefree(u) && issquarefree(A003415(u))); }; \\ issquarefree(0) returns 0 as zero is not considered as a squarefree number.
CROSSREFS
Setwise difference A328244 \ A328234.
Cf. A328253 (a subsequence, nonsquarefree terms).
Sequence in context: A243384 A242579 A206208 * A039368 A043191 A043971
KEYWORD
nonn
AUTHOR
Antti Karttunen, Oct 11 2019
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 May 20 21:47 EDT 2024. Contains 372720 sequences. (Running on oeis4.)