A203024 Numbers a = b + c where a, b, and c contain the same decimal digits.
0, 954, 2961, 4932, 5013, 5022, 5031, 5238, 5823, 6147, 6417, 7614, 7641, 8235, 8523, 9045, 9108, 9180, 9324, 9504, 9540, 9594, 9612, 9684, 9774, 9864, 9954, 20961, 21150, 21501, 24831, 24921, 25011, 26901, 27810, 28107, 28314, 29016, 29214, 29610, 29691, 29961
Offset: 1
Examples
954 is in the sequence since 954 = 459 + 495.
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
Programs
-
PARI
is(n)=my(v=vecsort(Vec(Str(n))));for(b=eval(concat(v)), n\2, if(vecsort(Vec(Str(b)))==v && vecsort(Vec(Str(n-b)))==v, return(1)));0 \\ Charles R Greathouse IV, Dec 28 2011
Extensions
a(2)-a(42) from Charles R Greathouse IV, Dec 28 2011
Comments