OFFSET
0,1
COMMENTS
Number of identical consecutive integers in A290205.
LINKS
Michael Turniansky, Table of n, a(n) for n = 0..455
Wikipedia, Scrabble
PROG
(Python)
from num2words import num2words
tp = {"aeilnorstu": 1, "dg": 2, "bcmp":3, "fhvwy":4, "k":5, "jx":8, "qz":10}
def pts(c): return ([tp[s] for s in tp if c in s]+[0])[0]
def A113172(n): return sum(map(pts, num2words(n).replace(" and", "")))
def A290205(n):
while n not in {12, 4, 7, 8, 9}: n = A113172(n)
return 12 if n == 12 else 4
def aupton(terms):
alst, prev, k, rl = [], A290205(0), 1, 1
while len(alst) < terms:
while A290205(k) == prev: k += 1; rl += 1
alst.append(rl); rl = 0; prev = 12 if prev == 4 else 4
return alst
print(aupton(105)) # Michael S. Branicky, Dec 01 2021
CROSSREFS
KEYWORD
nonn,word
AUTHOR
Michael Turniansky, Jul 24 2017
STATUS
approved