A272800 Flavius Josephus factor of n.
0, 2, 0, 2, 3, 2, 0, 2, 4, 2, 3, 2, 0, 2, 5, 2, 3, 2, 0, 2, 4, 2, 3, 2, 6, 2, 0, 2, 3, 2, 7, 2, 4, 2, 3, 2, 5, 2, 0, 2, 3, 2, 8, 2, 4, 2, 3, 2, 0, 2, 6, 2, 3, 2, 5, 2, 4, 2, 3, 2, 9, 2, 0, 2, 3, 2, 10, 2, 4, 2, 3, 2, 7, 2, 5, 2, 3, 2, 0, 2, 4, 2, 3, 2, 6, 2
Offset: 1
Keywords
Links
Programs
-
Sage
# Function that returns an array of the first n terms. def A272800(n): A, B, k = [0]*n, range(n), 1 while k
Danny Rorabaugh, May 13 2016
Comments