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.

A245206 Odd primes p with E_{p-3}(1/4) == 0 (mod p), where E_n(x) denotes the Euler polynomial of degree n.

Original entry on oeis.org

1019
Offset: 1

Views

Author

Zhi-Wei Sun, Jul 13 2014

Keywords

Comments

The conjecture in A245204 asserts that the current sequence contains infinitely many primes.
Our computation shows that the second term should be greater than prime(2600) = 23321.

Examples

			a(1) = 1019 since 1019 is a prime with E_{1019-3}(1/4) == 88*1019 (mod 1019^2).
		

Crossrefs

Programs

  • Mathematica
    rMod[m_,n_]:=Mod[Numerator[m]*PowerMod[Denominator[m],-1,n],n,-n/2]
    n=0;Do[If[rMod[EulerE[Prime[k]-3,1/4],Prime[k]]==0,n=n+1;Print[n," ",Prime[k]]],{k,2,200}]