OFFSET
1,1
COMMENTS
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
EXAMPLE
{11,13,14,15,17} are not in the range of phi and the corresponding differences are {2,1,1,2}.
MATHEMATICA
t0[x_] := Table[j, {j, 1, x}]; t=Table[EulerPhi[w], {w, 1, 10000}]; u=Union[%]; c=Complement[t0[10000], u]; Delete[c-RotateRight[c], 1]
PROG
(Haskell)
a083534 n = a083534_list !! (n-1)
a083534_list = zipWith (-) (tail a007617_list) a007617_list
-- Reinhard Zumkeller, Nov 26 2015
(PARI) list(lim) = {my(k1 = 3, k2 = 3); while(k1 < lim, until(!istotient(k2), k2++); print1(k2 - k1, ", "); k1 = k2); } \\ Amiram Eldar, Feb 22 2025
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
Labos Elemer, May 20 2003
STATUS
approved