login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A254624
Numbers x such that x = concatenate(a, b) and phi(a) + phi(b) = sigma(x) - x.
0
49, 169, 289, 611, 1751, 2171, 2231, 7921, 10751, 11479, 23153, 24367, 38551, 38809, 49901, 99101, 116303, 143351, 229441, 268151, 271441, 306181, 357101, 1030301, 2014751, 2078663
OFFSET
1,1
EXAMPLE
49 = concat(4,9); phi(4) = 2, phi(9) = 6, sigma(49) = 57; 2 + 6 = 8 = 57 - 49.
169 = concat(16,9); phi(16) = 8, phi(9) = 6, sigma(169) = 183; 8 + 6 = 14 = 183-169.
MAPLE
with(numtheory); P:=proc(q) local a, b, i, 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 phi(a)+phi(b)=sigma(n)-n then print(n); break;
fi; od; od; end: P(10^9);
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Paolo P. Lava, Feb 03 2015
STATUS
approved