OFFSET
1,2
COMMENTS
Essentially the same as A083490. - R. J. Mathar, Sep 24 2013
LINKS
Index entries for linear recurrences with constant coefficients, signature (0, 1, 0, 0, 0, 0, 0, 10, 0, -10).
PROG
(Haskell)
import Data.List (intersect)
a229363 n = a229363_list !! (n-1)
a229363_list = f "" [0, 2 ..] where
f xs (e:es) = if null $ intersect xs ys then e : f ys es else f xs es
where ys = show e
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Sep 21 2013
STATUS
approved