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”).

A245468
Numbers x such that sigma(x)=sigma(T(x)), where sigma(x) is the sum of the divisors of x and T(x) the transform defined in A243993.
1
204, 395, 506, 583, 612, 627, 718, 795, 975, 2012, 3188, 3690, 7198, 7881, 11472, 21280, 34040, 41310, 49021, 53314, 94363, 107348, 128616, 201804, 203912, 204204, 204435, 207390, 315244, 321010, 345990, 347484, 388297, 395395, 400020, 400352, 402815, 404576
OFFSET
1,1
EXAMPLE
T(3188) = 4961 and sigma(3188) = sigma(4961) = 5586.
MAPLE
with(numtheory);
T:=proc(t) local j, w, x, y; x:=t; y:=[]; while x>0 do
y:=[x mod 10, op(y)]; x:=trunc(x/10); od; w:=(y[nops(y)]+y[1]) mod 10;
x:=0; for j from 1 to nops(y)-1 do x:=x*10+((y[j]+y[j+1]) mod 10); od; x:=x*10+w; end:
P:=proc(q) local n; for n from 10 to q do if sigma(n)=sigma(T(n))
then print(n); fi; od; end: P(10^10);
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Paolo P. Lava, Jul 23 2014
STATUS
approved