|
| |
|
|
A085932
|
|
Numbers n such that the digits sorted in ascending order + the digital sum of n is a palindrome. Or, sortdigits(n)+digit sum(n) is a palindrome.
|
|
3
| |
|
|
1, 2, 3, 4, 10, 20, 30, 40, 100, 124, 129, 142, 148, 167, 176, 184, 192, 200, 214, 219, 224, 229, 241, 242, 248, 267, 276, 284, 291, 292, 300, 348, 367, 376, 384, 400, 412, 418, 421, 422, 428, 438, 448, 467, 476, 481, 482, 483, 484, 567, 576, 617, 627, 637
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
EXAMPLE
| a(12)=142 because the digits of 142 in ascending order are 124 and the digital sum of 124=7 and 124+7=131, a palindrome.
|
|
|
MATHEMATICA
| dspQ[n_]:=Module[{sidn=Sort[IntegerDigits[n]], pidn}, pidn= IntegerDigits[ FromDigits[ sidn]+ Total[ sidn]]; pidn==Reverse[pidn]]; Select[Range[ 700], dspQ] (* From Harvey P. Dale, Jul 19 2011 *)
|
|
|
CROSSREFS
| Cf. A085933, A085934, A085935.
Sequence in context: A135432 A108364 A145028 * A135056 A132135 A131871
Adjacent sequences: A085929 A085930 A085931 * A085933 A085934 A085935
|
|
|
KEYWORD
| base,easy,nonn
|
|
|
AUTHOR
| Jason Earls and Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Jul 14 2003
|
| |
|
|