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!)
A258319 Numbers n such that n = concat(a,b) and n = phi(n) + phi(a) + phi(b), with a>0 and b>0, where phi(n) is the Euler totient function of n. 1
25, 177, 1177, 2501, 17105, 21337, 22681, 32581, 217009, 409501, 561601, 577501, 861841, 1025821, 1401841, 1738081, 2836465, 8331361, 10284193, 19971901, 20103001, 27835921, 31949921, 34897501, 100763053, 107314217, 111512701, 121806001, 150658561, 155874001 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
25 = concat(2,5); phi(25) + phi(2) + phi(5) = 20 + 1 + 4 = 25;
177 = concat(1,77); phi(177) + phi(1) + phi(77) = 116 + 1 + 60 = 177; etc.
MAPLE
with(numtheory); P:=proc(q) local a, b, i; global n; for n from 1 to q do
for i from 1 to ilog10(n) do a:=trunc(n/10^i); b:=n-a*10^i;
if a>0 and b>0 then if phi(n)+phi(a)+phi(b)=n
then print(n); break; fi; fi; od; od; end: P(10^9);
CROSSREFS
Sequence in context: A020277 A200671 A042212 * A302562 A264259 A209858
KEYWORD
nonn,base
AUTHOR
Paolo P. Lava, May 26 2015
EXTENSIONS
a(18) inserted by Giovanni Resta, May 27 2015
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 August 28 23:11 EDT 2024. Contains 375508 sequences. (Running on oeis4.)