OFFSET
1,1
COMMENTS
In SpellUnder-Down dealing, we spell the number of the next card, putting a card under for each letter in the number, then we deal the next card. So we start with putting 3 cards under, for O-N-E, then deal, then 3 under for T-W-O, then deal, then 5 under for T-H-R-E-E, then deal. The dealing sequence is highly irregular because it depends on English spelling. The dealing pattern starts: UUUDUUUDUUUUUD .
LINKS
Eric Huang, Tanya Khovanova, Timur Kilybayev, Ryan Li, Brandon Ni, Leone Seidel, Samarth Sharma, Nathan Sheffield, Vivek Varanasi, Alice Yin, Boya Yun, and William Zelevinsky, Card Dealing Math, arXiv:2509.11395 [math.NT], 2025. See p. 17.
FORMULA
a(n) = A067278(n) + n.
EXAMPLE
The dealing pattern to deal three cards is UUUDUUUDUUUUUD. It contains 14 letters, thus, a(3) = 14.
PROG
(Python)
from num2words import num2words
from itertools import count, islice
def n2w(n): return "".join(c for c in num2words(n).replace(" and", "") if c.isalpha())
def agen():
tot = 0
for n in count(1):
tot += len(n2w(n))
yield tot + n
print(list(islice(agen(), 69))) # Michael S. Branicky, Jun 02 2026
CROSSREFS
KEYWORD
nonn,word,changed
AUTHOR
Tanya Khovanova and the MIT PRIMES STEP junior group, Jan 16 2025
EXTENSIONS
a(20)-a(69) corrected by Falk Hüffner, May 24 2026
STATUS
approved
