login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A035113 Numbers != 2 (mod 4) listed in order of increasing totient function phi (A000010). 4
1, 3, 4, 5, 8, 12, 7, 9, 15, 16, 20, 24, 11, 13, 21, 28, 36, 17, 32, 40, 48, 60, 19, 27, 25, 33, 44, 23, 35, 39, 45, 52, 56, 72, 84, 29, 31, 51, 64, 68, 80, 96, 120, 37, 57, 63, 76, 108, 41, 55, 75, 88, 100, 132, 43, 49, 69, 92, 47, 65, 104, 105, 112, 140, 144 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
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.
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[1] for x in lov(200)][:100]) # Dumitru Damian, Feb 01 2022
CROSSREFS
Sequence in context: A035538 A039881 A364652 * A106263 A089642 A327182
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from James A. Sellers
a(43) onward corrected by Sean A. Irvine, Sep 26 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 05:49 EDT 2024. Contains 371964 sequences. (Running on oeis4.)