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!)
A286067 Unitary perfect totient numbers: numbers n that equal to the sum of their iterated unitary totient uphi(n). 5
3, 10, 21, 110, 3910, 1500988838 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The unitary version of A082897 (perfect totient numbers), in which the unitary totient function uphi(n) (A047994) replaces the Euler totient function phi(n) (A000010).
a(7) > 5*10^9, if it exists. - Giovanni Resta, May 06 2020
LINKS
EXAMPLE
3910 is a unitary perfect totient number because 3910 = uphi(3910) + uphi(uphi(3910)) + uphi(uphi(uphi(3910))) + ... = 1408 + 1270 + 504 + 336 + 180 + 96 + 62 + 30 + 8 + 7 + 6 + 2 + 1.
MATHEMATICA
uphi[n_] := (Times @@ (Table[#[[1]]^#[[2]] - 1, {1}] & /@ FactorInteger[n]))[[1]]; kmax = 10000; a = Table[0, {kmax}]; uptns = {}; Do[e = uphi[k]; a[[k]] = e + a[[e]]; If[k == a[[k]], AppendTo[uptns , k]], {k, 2, kmax}]; uptns
CROSSREFS
Sequence in context: A360632 A139116 A120109 * A337623 A158030 A068082
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, May 01 2017
EXTENSIONS
a(6) from Giovanni Resta, May 06 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 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)