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

A062913
Non-palindromic number and its reversal are both multiples of 14.
0
2072, 2254, 2436, 2520, 2590, 2618, 2688, 2702, 2954, 4074, 4256, 4340, 4438, 4522, 4592, 4704, 4956, 6076, 6160, 6258, 6342, 6524, 6594, 6706, 6860, 6958, 8078, 8162, 8344, 8526, 8596, 8610, 8680, 8708, 8862, 20020, 20090, 20118, 20188, 20272
OFFSET
1,1
EXAMPLE
2254 and 4522 are both multiples of 14.
PROG
(ARIBAS): n := 14; stop := 20700; m := 0; while m < stop do rev := int_reverse(m); if m <> rev and rev mod n = 0 then write(m, " "); end; inc(m, n); end;
CROSSREFS
Sequence in context: A200829 A035871 A221052 * A096927 A076425 A249654
KEYWORD
nonn,base,easy
AUTHOR
Amarnath Murthy, Jul 01 2001
EXTENSIONS
Corrected and extended by Dean Hickerson, Jul 06, 2001
STATUS
approved