A380770 Number of letters in the Slovene name of n (feminine, nominative), excluding spaces.
3, 3, 3, 3, 5, 3, 4, 5, 4, 5, 5, 6, 8, 8, 10, 8, 9, 10, 9, 10, 7, 12, 12, 12, 14, 12, 13, 14, 13, 14, 8, 13, 13, 13, 15, 13, 14, 15, 14, 15, 10, 15, 15, 15, 17, 15, 16, 17, 16, 17, 8, 13, 13, 13, 15, 13, 14, 15, 14, 15, 9, 14, 14, 14, 16, 14, 15, 16, 15, 16, 10, 15, 15, 15, 17, 15, 16, 17, 16, 17, 9, 14, 14, 14, 16, 14, 15, 16, 15
Offset: 0
Examples
a(0)=3 [nič], a(1)=3 [ena], a(2)=3 [dve], a(3)=3 [tri], a(4)=5 [štiri]
Links
Crossrefs
Cf. A005589.
Programs
-
Python
from num2words import num2words def a(n): return len(num2words(n, lang='sl').replace(' ', '')) print([a(n) for n in range(1000)])
Comments