OFFSET
0,1
COMMENTS
For this sequence a font is used where a, b, d, e, o, p, and q each have one hole, g has two, and all other letters have no holes.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..10000
EXAMPLE
The term a(101) = 7 because the name "one hundred one" contains seven total holes in these letters: o, e, d, e, d, o, and e.
MAPLE
a:= n-> (s-> add((t-> `if`(t in {"a", "b", "d", "e", "o", "p", "q"}, 1,
`if`(t="g", 2, 0)))(s[i]), i=1..length(s)))(convert(n, english)):
seq(a(n), n=0..104); # Alois P. Heinz, Jul 30 2023
CROSSREFS
KEYWORD
nonn,word,easy
AUTHOR
Rick L. Shepherd, Jan 16 2017
STATUS
approved