login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A244915
Smallest positive integer a(n) such that b(n) = a(n)^2 + a(n-1)^2 is a prime different from the primes b(1), b(2), ..., b(n-1), where a(0) = 1.
2
1, 1, 2, 3, 8, 5, 2, 7, 8, 13, 2, 15, 4, 1, 6, 5, 4, 9, 10, 1, 14, 9, 16, 1, 20, 3, 10, 7, 12, 13, 10, 17, 2, 27, 10, 19, 6, 11, 4, 21, 10, 29, 4, 25, 6, 29, 16, 5, 18, 7, 20, 11, 14, 15, 22, 5, 24, 1, 26, 5, 28, 13, 20, 19, 14, 25, 12, 17, 8, 23, 12, 43, 8
OFFSET
0,3
COMMENTS
If every positive integer appears in the sequence infinitely often then the sequence b(n) is a permutation of all primes of the form x^2 + y^2.
LINKS
PROG
(PARI)
a244915(maxn) = {
my(a=[1], b=[], an, bn);
for(n=1, maxn,
an=1;
while(!(isprime(bn=an^2+a[#a]^2) && setsearch(b, bn)==0), an++);
a=concat(a, an);
b=setunion(b, [bn])
);
a
}
a244915(100) \\ Colin Barker, Aug 24 2014
(Python)
from sympy import isprime
A244915 = [1]
blist = []
for n in range(1, 100):
a, b = 1, 1 + A244915[-1]**2
while not isprime(b) or b in blist:
b += 2*a+1
a += 1
blist.append(b)
A244915.append(a)
# Chai Wah Wu, Aug 28 2014
CROSSREFS
Cf. A100208.
Sequence in context: A334859 A084110 A299788 * A244668 A192646 A338841
KEYWORD
nonn
AUTHOR
Thomas Ordowski, Aug 21 2014
EXTENSIONS
More terms from Colin Barker, Aug 24 2014
STATUS
approved