OFFSET
1,1
COMMENTS
a(16) > 10^10. - Giovanni Resta, May 23 2016
EXAMPLE
If n = 48917, starting from the least significant digit, let us cut the number into the set 7, 17, 917, 8917. We have:
sigma(7) = 8;
sigma(17) = 18;
sigma(917) = 1056;
sigma(8917) = 9196.
Then, starting from the most significant digit, let us cut the number into the set 4, 48, 489, 4891. We have:
sigma(4) = 7;
sigma(48) = 124;
sigma(489) = 656;
sigma(4891) = 5032.
Finally,
8 + 18 + 1056 + 9196 - (7 + 124 + 656 + 5032) = 4459 = sigma(48917) - 48917.
MAPLE
with(numtheory); P:=proc(q) local a, b, k, n;
for n from 2 to q do a:=0; k:=1; while trunc(n/10^k)>0 do
a:=a+phi(trunc(n/10^k)); k:=k+1; od; b:=0; k:=1;
while (n mod 10^k)<n do b:=b+phi(n mod 10^k); k:=k+1; od;
if phi(n)=b-a then print(n); fi; od; end: P(10^9);
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Paolo P. Lava, Apr 17 2014
EXTENSIONS
a(1)-a(2) corrected and a(12)-a(15) added by Giovanni Resta, May 23 2016
STATUS
approved