OFFSET
1,1
FORMULA
The first nine digits of ten-digit ISBN numbers are assigned according to the language, publisher and book. The final digit is a checksum: 1 x the first digit, 2 x the second digit, ... 9 x the ninth digit, reduced modulo 11 and 10 is printed as "X".
PROG
(Python)
def a(n): return sum((i+1)*int(s) for i, s in enumerate(str(n).zfill(9)))%11
print([a(n) for n in range(1, 100)]) # Michael S. Branicky, Sep 07 2021
CROSSREFS
KEYWORD
easy,nonn,base
AUTHOR
Jud McCranie, Feb 13 2006
STATUS
approved