OFFSET
1,1
COMMENTS
For some algorithms for finding A034699(n), the numbers in this sequence represent a worst-case scenario of execution time.
EXAMPLE
437 = 19*23 and none of the intervening integers (20,21,22) are prime powers.
MATHEMATICA
t = Join[{1}, Select[Range[2, 131], Mod[ #, # - EulerPhi[ # ]] == 0 &]]; Most@t*Rest@t (* Robert G. Wilson v, Sep 02 2006 *)
PROG
(PARI) lista(nn) = v = concat(1, select(x->isprimepower(x), vector(nn, n, n))); for (n=1, #v-1, print1(v[n]*v[n+1], ", ")); \\ Michel Marcus, Mar 20 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul Richards, Aug 28 2006
EXTENSIONS
More terms from Robert G. Wilson v, Sep 02 2006
STATUS
approved