|
Search: id:A062906
|
|
|
| A062906 |
|
Numbers n such that n and its reversal are both multiples of 17. |
|
+0 1
|
|
| 272, 323, 595, 646, 969, 1156, 1207, 1479, 2720, 2992, 3230, 3553, 3604, 3876, 3927, 4063, 4114, 4386, 4437, 5950, 6460, 6511, 6783, 6834, 7021, 7293, 7344, 7667, 7718, 8177, 8228, 9690, 9741, 10047, 11560, 11611, 11883, 11934, 12070, 12121, 12393
(list; graph; listen)
|
|
|
OFFSET
|
1,1
|
|
|
EXAMPLE
|
1156 and 6511 are both multiples of 17.
|
|
MATHEMATICA
|
Select[ Range[ 30000 ], Mod[ #, 17 ] == 0 && Mod[ FromDigits[ Reverse[ IntegerDigits[ # ] ] ], 17 ] == 0 & ]
|
|
PROGRAM
|
(ARIBAS): n := 17; stop := 12500; m := 0; while m < stop do rev := int_reverse(m); if rev mod n = 0 then write(m, " "); end; inc(m, n); end;
|
|
CROSSREFS
|
Sequence in context: A108835 A005933 A112820 this_sequence A133514 A141546 A000517
Adjacent sequences: A062903 A062904 A062905 this_sequence A062907 A062908 A062909
|
|
KEYWORD
|
nonn,base,easy
|
|
AUTHOR
|
Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Jul 01 2001
|
|
EXTENSIONS
|
Corrected and extended by Dean Hickerson (dean(AT)math.ucdavis.edu) and Reiner Martin (reinermartin(AT)hotmail.com), Jul 06, 2001
|
|
|
Search completed in 0.002 seconds
|