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!)
A115039 Exponent n for the smallest x such that x^2 + p = y^n over the set of primes p. 0
3, 2, 2, 3, 3, 2, 4, 2, 3, 2, 5, 2, 2, 2, 7, 6, 2, 3, 2, 9, 2, 7, 2, 3, 4, 2, 7, 2, 3, 2, 7, 2, 2, 2, 2, 9, 2, 2, 3, 2, 5, 2, 3, 2, 2, 3, 2, 9, 5, 2, 2, 5, 4, 7, 2, 2, 2, 3, 2, 2, 2, 2, 3, 2, 2, 2, 2, 4, 2, 2, 2, 3, 11, 2, 2, 2, 2, 2, 2, 2, 2, 5, 9, 3, 3, 2, 4, 2, 2, 9, 2, 2, 9, 2, 2, 9, 2, 2, 2, 2, 3, 3, 2, 2, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Conjecture: There will always be an x,y,n such that x^2 + p = y^n for all primes p.
LINKS
EXAMPLE
5 is the smallest number that when we add its square to prime 2, we get a perfect power, 3^3. So 3 is the first entry.
PROG
(PARI) sqplusp(n) = { local(p, x, y, c=0); forprime(p=2, n, for(x=1, n, y=x^2+p; if(ispower(y), print1(exponent(y)", "); c++; break ) ) ); print(); print(c) } exponent(n) = \ Return the exponent if n is a perfect power { local(x, ln, j, e=0); ln=omega(n); x=factor(n); e=x[1, 2]; for(j=2, ln, if(x[j, 2] < e, e=x[j, 2]) ); return(e) }
CROSSREFS
Sequence in context: A347381 A075392 A069901 * A032536 A374167 A115061
KEYWORD
easy,nonn
AUTHOR
Cino Hilliard, Feb 26 2006
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 August 25 17:34 EDT 2024. Contains 375442 sequences. (Running on oeis4.)