OFFSET
1,10
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
FORMULA
EXAMPLE
The first 10 palindromes are 0, 1, ..., 9 yielding 9 ones for the first terms of this sequence.
MATHEMATICA
Differences[Select[Range[0, 1000], PalindromeQ]] (* Harvey P. Dale, Oct 04 2023 *)
PROG
(Haskell)
a086862 n = a086862_list !! (n-1)
a086862_list = zipWith (-) (tail a002113_list) a002113_list
-- Reinhard Zumkeller, Jul 30 2015
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Karl Goiser (kggoiser(AT)utas.edu.au), Aug 20 2003
EXTENSIONS
One additional 1 prepended by Michel Marcus, Jun 30 2014
STATUS
approved