A030166 Number of strokes in Chinese characters for n; also number of strokes in Japanese kanji characters for n.
13, 1, 2, 3, 5, 4, 4, 2, 2, 2, 2, 3, 4, 5, 7, 6, 6, 4, 4, 4, 4, 5, 6, 7, 9, 8, 8, 6, 6, 6, 5, 6, 7, 8, 10, 9, 9, 7, 7, 7, 7, 8, 9, 10, 12, 11, 11, 9, 9, 9, 6, 7, 8, 9, 11, 10, 10, 8, 8, 8, 6, 7, 8, 9, 11, 10, 10, 8, 8, 8, 4, 5, 6, 7, 9, 8, 8, 6, 6, 6, 4, 5, 6, 7, 9, 8, 8, 6, 6, 6, 4, 5, 6, 7, 9, 8, 8, 6, 6, 6, 7
Offset: 0
Examples
The Chinese number 15 (十五) takes 6 strokes to write so a(15) = 6
Links
- Hunter N. Ratliff, Table of n, a(n) for n = 0..20000 (first 301 terms from Benjamin M. Covert)
- Index entries for sequences related to number of letters in n
Programs
-
Python
from num2words import num2words def A030166(n): kanji=['一','二','三','四','五','六','七','八','九','十','百','千','万','億','兆','京','垓','秭','穣','溝','澗','正','載','極','零'] strokes=[1,2,3,5,4,4,2,2,2,2,6,3,3,15,6,8,9,10,18,13,15,5,13,12,13] return sum([strokes[kanji.index(i)] for i in num2words(n, lang='ja')]) # Hunter N. Ratliff, Feb 29 2020
Extensions
Corrected by Robert Lozyniak (11(AT)onna.com), Oct 22 2001
More terms from Naohiro Nomoto, Oct 23 2001
Extended by Benjamin M. Covert, Oct 30 2018
Comments