OFFSET
1,1
COMMENTS
It appears that a or b is equal to 1. In particular, if b=1 we have 2625, 3705, 13365, 25545, 57645, ... that are a subset of A001274.
LINKS
Paolo P. Lava, Table of n, a(n) for n = 1..150
EXAMPLE
6 in base 2 is 110. If we take 110 = concat(1,10) then 1 and 10 converted to base 10 are 1 and 2. Finally phi(1 + 2) = 2 = phi(6).
12 in base 2 is 1100. If we take 1100 = concat(1,100) then 1 and 100 converted to base 10 are 1 and 4. Finally phi(1 + 4) = 4 = phi(12);
2625 in base 2 is 101001000001. If we take 101001000001 = concat(10100100000,1) then 10100100000 and 1 converted to base 10 are 1312 and 1. Finally phi(1312 + 1) = 1200 = phi(2625); etc.
MAPLE
with(numtheory): P:=proc(q) local a, b, c, k, n;
for n from 1 to q do c:=convert(n, binary, decimal);
for k from 1 to ilog10(c) do
a:=convert(trunc(c/10^k), decimal, binary);
b:=convert((c mod 10^k), decimal, binary);
if a*b>0 then if phi(a+b)=phi(n) then print(n); break;
fi; fi; od; od; end: P(10^8);
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Paolo P. Lava, Jun 26 2015
STATUS
approved