cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A205535 Least nonnegative integer y such that Kronecker(y^2 - 4, n) == -1 and (x+2)^(n+1) == 5 -+ 2*y (mod n, mod x^2 +- y*x + 1), or -1 if there is no such y.

Original entry on oeis.org

-1, -1, 1, 0, -1, 1, -1, 0, -1, -1, -1, 0, -1, 3, -1, -1, -1, 1, -1, 0, -1, -1, -1, 0, -1, -1, -1, -1, -1, 1, -1, 0, -1, -1, -1, -1, -1, 3, -1, -1, -1, 1, -1, 0, -1, -1, -1, 0, -1, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1, 0, -1, 5, -1, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, 3, -1, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1, -1
Offset: 0

Views

Author

M. F. Hasler, Jan 28 2012

Keywords

Comments

Related to the 4.X Selfridge Conjecture by P. Underwood, which states that a(n)=-1 iff n > 5 is prime. (It seems that n=5 is the only prime that has a(n) >= 0.)
Records are [n, a(n)]: [0, -1], [2, 1], [13, 3], [61, 5], [109, 6], [1009, 9], [2689, 11], [8089, 15], [33049, 17], [53881, 21], [87481, 27],[483289, 29], [515761, 35], [1083289, 39], [3818929, 45], ... See A205534.

Programs

  • PARI
    A205535(n)={/*isprime(n) &&*/for(y=0,n, kronecker(y^2-4,n)==-1 || next; Mod(x+Mod(2,n),x^2-y*x+1)^(n+1)==5+2*y || next; Mod(x+Mod(2,n),x^2+y*x+1)^(n+1)==5-2*y && return(y));-1} /* the upper search bound is motivated from experimental data, which suggests that y << n, cf. A205534. If we admit the conjecture, we can prefix the for() loop with "isprime(n) &&". */