OFFSET
1,1
COMMENTS
Numbers of the form 25*10^k, 44*10^k, 132*10^k, 164*10^k, 248*10^k, 825*10^k, 836*10^k, 842*10^k, 4375*10^k, 7384*10^k, etc. , with k > 0, are part of the sequence.
LINKS
Paolo P. Lava, Table of n, a(n) for n = 1..110
EXAMPLE
phi(63528) = 6*3528 = 21168.
MAPLE
with(numtheory): P:=proc(q) local n; for n from 1 to q do
if phi(n)=trunc(n/10^(ilog10(n)))*(n mod 10^ilog10(n)) then print(n); fi;
od; end: P(10^9);
MATHEMATICA
Select[Range@ 164000, Function[x, First[#] FromDigits[Rest@ #] == EulerPhi@ x &@ IntegerDigits@ x]] (* Michael De Vlieger, May 03 2017 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Paolo P. Lava, May 03 2017
STATUS
approved