A063872 Let m be the n-th positive integer such that phi(m) is divisible by m - phi(m). Then a(n) = phi(m)/(m - phi(m)).
1, 2, 1, 4, 6, 1, 2, 10, 12, 1, 16, 18, 22, 4, 2, 28, 30, 1, 36, 40, 42, 46, 6, 52, 58, 60, 1, 66, 70, 72, 78, 2, 82, 88, 96, 100, 102, 106, 108, 112, 10, 4, 126, 1, 130, 136, 138, 148, 150, 156, 162, 166, 12, 172, 178, 180, 190, 192, 196, 198, 210, 222, 226, 228, 232
Offset: 1
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
- OEIS Wiki, LCM numeral system
Programs
-
Mathematica
epd[n_]:=Module[{ep=EulerPhi[n]},If[Divisible[ep,n-ep],ep/(n-ep),Nothing]]; Array[epd,300,2] (* Harvey P. Dale, Dec 27 2020 *)
-
PARI
M(n) = ispower(n, , &n); if (isprime(n), n, 1); \\ A014963 apply(x->x-1, select(isprime, apply(x->M(x+1), [1..260]))) \\ Michel Marcus, Sep 14 2021
Formula
a(n) = A025473(n + 1) - 1. - Bill McEachen, Sep 11 2021
Comments