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!)
A243160 Least number k such that k^n - k^(n-1) + k^(n-2) - ... + (-1)^n is prime or 0 if no such k exists. 1
3, 2, 2, 2, 0, 2, 0, 0, 0, 2, 0, 2, 0, 0, 0, 2, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 7, 0, 2, 0, 0, 0, 0, 0, 16, 0, 0, 0, 61, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 6, 0, 2, 0, 0, 0, 0, 0, 5, 0, 0, 0, 46, 0, 18, 0, 0, 0, 0, 0, 2, 0, 0, 0, 49, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 70 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
If n is in A006093, then a(n) is not 0.
The only term where the converse is false is a(3) = 2. Also, 2 is the only such number that makes k^3 - k^2 + k - 1 prime. Otherwise, a(n) is not 0 iff n is in A006093.
LINKS
EXAMPLE
1^4 - 1^3 + 1^2 - 1^1 + 1 = 1 is not prime. 2^4 - 2^3 + 2^2 - 2^1 + 1 = 11 is prime. Thus a(4) = 2.
PROG
(PARI) a(n)=for(k=1, 1000, s=k^n; if(ispseudoprime(s+sum(i=1, n, (-1)^i*k^(n-i))), return(k)))
n=1; while(n<100, print1(a(n), ", "); n+=1)
(PARI) A243160(n) = if(3!=n && !isprime(1+n), 0, my(s); for(k=1, oo, s=k^n; if(isprime(s+sum(i=1, n, (-1)^i*k^(n-i))), return(k)))); \\ Antti Karttunen, Jul 19 2024
CROSSREFS
Cf. A006093.
Sequence in context: A098054 A336987 A075801 * A272694 A292370 A116943
KEYWORD
nonn
AUTHOR
Derek Orr, May 31 2014
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 September 4 11:21 EDT 2024. Contains 375683 sequences. (Running on oeis4.)