A363709 For n >= 0, a(n) is the least integer i >= 0 such that n + (n + 1) + ... + (n + i) is a prime number or a(n) = -1 if no such i exists.
2, 1, 0, 0, -1, 0, 1, 0, 1, 1, -1, 0, -1, 0, 1, 1, -1, 0, 1, 0, 1, 1, -1, 0, -1, -1, 1, -1, -1, 0, 1, 0, -1, 1, -1, 1, 1, 0, -1, 1, -1, 0, -1, 0, 1, -1, -1, 0, 1, -1, 1, 1, -1, 0, 1, -1, 1, -1, -1, 0, -1, 0, -1, 1, -1, 1, -1, 0, 1, 1, -1, 0, -1, 0, 1, 1, -1, -1, 1, 0, -1
Offset: 0
Keywords
Examples
n = 4: no such i exists, thus a(4) = -1. n = 5: n is prime, i = 0, thus a(5) = 0. n = 6: n + (n + 1) = 6 + 7 = 13 is prime, i = 1, thus a(6) = 1.
Formula
((i + 1)*(i + 2*n))/2 = p, p prime number.
Comments