login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A270004 Run-length encoding of iterated Scrabble function. 1
12, 1, 4, 2, 1, 1, 1, 2, 1, 3, 2, 1, 1, 2, 1, 3, 4, 1, 1, 1, 3, 1, 2, 3, 3, 3, 1, 1, 1, 5, 6, 3, 1, 2, 4, 3, 1, 2, 1, 1, 1, 1, 3, 2, 2, 1, 1, 5, 2, 1, 1, 3, 2, 7, 1, 4, 1, 4, 1, 4, 1, 1, 1, 1, 1, 3, 1, 2, 1, 4, 2, 1, 1, 4, 1, 1, 8, 2, 2, 3, 3, 2, 2, 3, 1, 3, 3, 2, 1, 1, 2, 2, 2, 3, 1, 2, 3, 7, 1, 1, 5, 3, 1, 1, 6 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Number of identical consecutive integers in A290205.
LINKS
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
Sequence in context: A229193 A010212 A341702 * A040151 A010213 A140378
KEYWORD
nonn,word
AUTHOR
Michael Turniansky, Jul 24 2017
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 02:45 EDT 2024. Contains 371782 sequences. (Running on oeis4.)