OFFSET
0,1
COMMENTS
4, 5, 6, 8, 9 never appear in any of these numbers because in each case there is a smaller digit with the same number of e's. 2 (the smallest number with no e's) never appears in any term after a(0). - Sean A. Irvine, Nov 10 2009
FORMULA
From Chai Wah Wu, Dec 20 2019: (Start)
a(n) = a(n-1) + 1000*a(n-7) - 1000*a(n-8) for n > 9 (conjectured).
G.f.: (-1000*x^9 + 3000*x^8 - 1800*x^7 + 6*x^6 + 94*x^5 + 6*x^4 + 8*x^3 + 3*x^2 - 2*x + 2)/((x - 1)*(1000*x^7 - 1)) (conjectured). (End)
EXAMPLE
a(2) = THREE, which has two Es.
PROG
(Haskell)
import Data.List (elemIndex); import Data.Maybe (fromJust)
a121065 = fromJust . (`elemIndex` a085513_list)
-- Reinhard Zumkeller, Jan 24 2015
CROSSREFS
KEYWORD
nonn,word
AUTHOR
Ray G. Opao, Aug 10 2006
EXTENSIONS
More terms Sean A. Irvine, Nov 10 2009
a(19) - a(21) added by Reinhard Zumkeller, Jan 24 2015
a(22) - a(29) from Chai Wah Wu, Dec 20 2019
STATUS
approved