OFFSET
1,1
COMMENTS
The only other such sequence starts with: 20,23,15,0,26,5,18,15,0... (which reads "two zero...")
PROG
Contribution from M. F. Hasler, Aug 18 2010: (Start)
(PARI) /* helper function */
digit2seq(d) = { concat( apply( x->bitand(x, -97), Vec( Vecsmall( Str( [zero, one, two, three, four, five, six, seven, eight, nine][d+1])))), 0) }
/* compute this sequence to at least Nmin terms. */
A104056(Nmin, a=[], pos=1)={ while( Nmin > #a=concat( a, concat( apply( digit2seq, eval( Vec( Str( if( #a, a[pos++ ], 15) )))))), ); a}
(End)
CROSSREFS
KEYWORD
base,easy,nonn,word
AUTHOR
Eric Angelini, Mar 02 2005
EXTENSIONS
Typo in sequence corrected by D. S. McNeil, Aug 18 2010
Extended beyond a(55) by M. F. Hasler, Aug 18 2010
STATUS
approved