OFFSET
1,2
LINKS
Dumitru Damian, Table of n, a(n) for n = 1..10000
L. C. Washington, The Main Conjecture and Annihilation of Class Groups, In: Introduction to Cyclotomic Fields, Graduate Texts in Mathematics, vol 83 (1997) Springer, New York, NY.
FORMULA
EXAMPLE
phi(1)=1, phi(3)=2, phi(4)=2, phi(5)=4, ...
PROG
(Python) from sympy import totient as A000010
def lov(n): return sorted([[A000010(n), n] for n in range(1, n) if n%4 != 2])
print([x[0] for x in lov(200)][:100]) # Dumitru Damian, Feb 03 2022
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from James A. Sellers
a(43) onward corrected by Sean A. Irvine, Sep 26 2020
STATUS
approved