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!)
A286265 Totient abundant numbers: numbers k such that A092693(k) > k. 7
5, 7, 11, 13, 17, 19, 23, 25, 29, 31, 33, 35, 37, 41, 43, 47, 49, 51, 53, 55, 59, 61, 65, 67, 69, 71, 73, 77, 79, 83, 85, 87, 89, 91, 95, 97, 101, 103, 107, 109, 113, 115, 119, 121, 123, 125, 127, 131, 133, 137, 139, 141, 143, 145, 149, 151, 153, 155, 157 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Paul Loomis and Florian Luca, On totient abundant numbers, Electronic Journal of Combinatorial Number Theory, Vol. 8, #A06 (2008).
EXAMPLE
19 is a totient abundant number since A092693(19) = phi(19) + phi(phi(19)) + ... = 18 + 6 + 2 + 1 = 27 > 19.
MATHEMATICA
totAbundantQ[n_] := Plus @@ FixedPointList[ EulerPhi@ # &, n] > 2*n+1; Select[Range[1000], totAbundantQ]
PROG
(Python)
from sympy import totient
def a092693(n): return 0 if n==1 else totient(n) + a092693(totient(n))
print([n for n in range(1, 201) if a092693(n) > n]) # Indranil Ghosh, May 05 2017
CROSSREFS
Sequence in context: A136801 A106571 A067291 * A339911 A007310 A069040
KEYWORD
nonn
AUTHOR
Amiram Eldar, May 05 2017
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 06:14 EDT 2024. Contains 371964 sequences. (Running on oeis4.)