OFFSET
0,3
COMMENTS
All base-10 palindromes occur in this sequence.
LINKS
Robert G. Wilson v, Table of n, a(n) for n = 0..23885
EXAMPLE
10 is in the sequence because "ten" has three letters, and so does "one" which is the name of the digital reverse of 10, which is 1 (because the leading 0 is truncated in 01).
14 is in the sequence because "fourteen" and "fortyone" both have 8 letters.
MATHEMATICA
lst= {(* copy the words from https://oeis.org/A000027/a000027.txt *)}; f[n_] := StringLength@ ToString@ lst[[n + 1]]; fQ[n_] := f@ n == f@ FromDigits@ Reverse@ IntegerDigits@ n; Select[Range[0, 130], fQ] (* Robert G. Wilson v, Feb 12 2013 *)
CROSSREFS
KEYWORD
nonn,base,easy,word
AUTHOR
Jonathan Vos Post, Feb 09 2013
EXTENSIONS
Corrected and extended by Robert G. Wilson v, Feb 12 2013
STATUS
approved