A147619 Numbers n = concat(a,b) such that phi(n) = phi(a) * phi(b), where phi = A000010.
78, 780, 897, 918, 1179, 1365, 1776, 2574, 2598, 2967, 3168, 3762, 4758, 5775, 5796, 7800, 7875, 7917, 8217, 8970, 9180, 9576, 11790, 13650, 13662, 13875, 13896, 14391, 17760, 18564, 18858, 19812, 20097, 25740, 25935, 25974, 25980, 27573, 28776
Offset: 1
Links
- Paolo P. Lava, Table of n, a(n) for n = 1..500
- David Wilson, A nice (decimal) property of 78, Seqfan mailing list (Nov 2008).
Crossrefs
Programs
-
Maple
with(numtheory): P:=proc(q) local s, t, k, n; for n from 1 to q do for k from 1 to ilog10(n) do s:=n mod 10^k; t:=trunc(n/10^k); if s*t>0 then if phi(s)*phi(t)=phi(n) then print(n); break; fi; fi; od; od; end: P(10^5); # Paolo P. Lava, Jan 27 2015
-
PARI
is_A147619(n)={ local(p=1, s=eulerphi(n)); while( n>p*=10, n%p*10
Comments