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!)
A100330 Positive integers k such that k^6 + k^5 + k^4 + k^3 + k^2 + k + 1 is prime. 37
1, 2, 3, 5, 6, 13, 14, 17, 26, 31, 38, 40, 46, 56, 60, 61, 66, 68, 72, 73, 80, 87, 89, 93, 95, 115, 122, 126, 128, 146, 149, 156, 158, 160, 163, 180, 186, 192, 203, 206, 208, 220, 221, 235, 237, 238, 251, 264, 266, 280, 282, 290, 294, 300, 303, 320, 341, 349, 350 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The corresponding primes are A088550. - Bernard Schott, Dec 20 2012
k = 5978493 * 2^150006 - 1 is an example of a very large term of this sequence. The generated prime is proved by the N-1 method (because k is prime and k*(k+1) is fully factored and this provides for an exactly 33.33...% factorization for Phi_7(k) - 1). - Serge Batalov, Mar 13 2015
LINKS
EXAMPLE
2 is in the sequence because 2^6 + 2^5 + 2^4 + 2^3 + 2^2 + 2 + 1 = 127, which is prime.
MAPLE
A100330 := proc(n)
option remember;
local a;
if n = 1 then
1;
else
for a from procname(n-1)+1 do
if isprime(numtheory[cyclotomic](7, a)) then
return a;
end if;
end do:
end if;
end proc:
seq(A100330(n), n=1..30) ; # R. J. Mathar, Feb 07 2014
MATHEMATICA
Select[Range[350], PrimeQ[Sum[ #^i, {i, 0, 6}]] &] (* Ray Chandler, Nov 17 2004 *)
Do[If[PrimeQ[n^6 + n^5 + n^4 + n^3 + n^2 + n + 1], Print[n]], {n, 1, 500}] (* Vincenzo Librandi, Feb 08 2014 *)
PROG
(Magma) [n: n in [1..500]| IsPrime(n^6 + n^5 + n^4 + n^3 + n^2 + n + 1)]; // Vincenzo Librandi, Feb 08 2014
(PARI) is(n)=isprime(polcyclo(7, n)) \\ Charles R Greathouse IV, Apr 28 2015
CROSSREFS
Cf. A100331, A250174 (Phi_14(n) = n^6 - n^5 + n^4 - n^3 + n^2 - n + 1 primes; these two sequences can also be considered an extension of each other into negative n values), A250177 (Phi_21(n) primes).
Sequence in context: A064725 A301761 A253644 * A331043 A020473 A098833
KEYWORD
nonn
AUTHOR
Ray G. Opao, Nov 16 2004
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 March 19 06:47 EDT 2024. Contains 370953 sequences. (Running on oeis4.)