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!)
A114433 Last digit (the checksum) of 10-digit ISBN numbers, 10 is represented as "X". 0
9, 7, 5, 3, 1, 10, 8, 6, 4, 8, 6, 4, 2, 0, 9, 7, 5, 3, 1, 5, 3, 1, 10, 8, 6, 4, 2, 0, 9, 2, 0, 9, 7, 5, 3, 1, 10, 8, 6, 10, 8, 6, 4, 2, 0, 9, 7, 5, 3, 7, 5, 3, 1, 10, 8, 6, 4, 2, 0, 4, 2, 0, 9, 7, 5, 3, 1, 10, 8, 1, 10, 8, 6, 4, 2, 0, 9, 7, 5, 9, 7, 5, 3, 1, 10, 8, 6, 4, 2, 6, 4, 2, 0, 9, 7, 5, 3, 1, 10 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
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
Sequence in context: A237841 A109846 A096230 * A222129 A188141 A244667
KEYWORD
easy,nonn,base
AUTHOR
Jud McCranie, Feb 13 2006
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 24 11:49 EDT 2024. Contains 371936 sequences. (Running on oeis4.)