The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A308270 Smallest prime with E-irregularity index n. 0
2, 5, 307, 277 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Smallest prime p such that A308243(i) = n, where i is the index of p in A000040.
E-regular primes have E-irregularity index 0, so a(0) = 2, since 2 is the smallest E-regular prime (A092217).
Does such a prime exist for every n?
a(4) > 2003 if it exists.
LINKS
R. Ernvall and T. Metsänkylä, Cyclotomic invariants and E-irregular primes, Mathematics of Computation 32 (1978), 617-629.
PROG
(PARI) a000364(n) = subst(bernpol(2*n+1), 'x, 1/4)*4^(2*n+1)*(-1)^(n+1)/(2*n+1) \\ after Charles R Greathouse IV in A000364
a308243(n) = my(p=prime(n), e=2, i=0); while(e <= p-3, if(a000364(e)%p==0, i++); e=e+2); i
a(n) = for(x=1, oo, if(a308243(x)==n, return(prime(x))))
CROSSREFS
Sequence in context: A016088 A248961 A353050 * A042909 A270476 A345977
KEYWORD
nonn,hard,more
AUTHOR
Felix Fröhlich, May 17 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 14 07:57 EDT 2024. Contains 372530 sequences. (Running on oeis4.)