A351255 Numbers whose k-th arithmetic derivative is zero for some k>0, ordered by their position in A276086.
1, 2, 3, 6, 9, 18, 5, 10, 30, 25, 150, 375, 750, 5625, 7, 14, 21, 42, 126, 70, 105, 315, 350, 1575, 3150, 1750, 2625, 49, 98, 882, 490, 735, 4410, 2450, 3675, 11025, 12250, 30625, 61250, 183750, 686, 3430, 5145, 25725, 77175, 385875, 1929375, 3858750, 4802, 72030, 120050, 180075, 33614, 100842, 117649, 705894, 26471025
Offset: 1
Links
- Antti Karttunen, Table of n, a(n) for n = 1..12878 (all 17-smooth terms of this sequence)
- Antti Karttunen, 105368 initial terms, without indices (all 19-smooth terms of this sequence, and also A276086(9699690) = 23, the first 23-smooth term)
- Index entries for sequences related to primorial base
Crossrefs
Programs
-
PARI
A003415checked(n) = if(n<=1, 0, my(f=factor(n), s=0); for(i=1, #f~, if(f[i,2]>=f[i,1],return(0), s += f[i, 2]/f[i, 1])); (n*s)); A099307(n) = { my(s=1); while(n>1, n = A003415checked(n); s++); if(n,s,0); }; A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); }; for(n=0, 2^9, u=A276086(n); c = A099307(u); if(c>0,print1(u, ", ")));
Comments