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!)
A208177 Primes of the form 128*k + 1. 9
257, 641, 769, 1153, 1409, 2689, 3329, 3457, 4481, 4993, 6529, 7297, 7681, 7937, 9473, 9601, 9857, 10369, 10753, 11393, 11777, 12161, 12289, 13313, 13441, 13697, 14081, 14593, 15233, 15361, 16001, 17921, 18049, 18433, 19073, 19457, 19841, 20353, 21121, 21377 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Odd primes p such that -1 is a 64th power mod p. - Eric M. Schmidt, Mar 27 2014
LINKS
FORMULA
a(n) ~ 64n log n. - Charles R Greathouse IV, Nov 01 2022
MATHEMATICA
Select[128 Range[167] + 1, PrimeQ]
PROG
(PARI) for(n=1, 167, r=128*n+1; if(isprime(r), print1(r", ")));
(Magma) [ p: p in PrimesUpTo(22000) | p mod 128 eq 1 ];
(Haskell)
a208177 n = a208177_list !! (n-1)
a208177_list = filter ((== 1) . a010051) [1, 129..]
-- Reinhard Zumkeller, Mar 06 2012
CROSSREFS
Sequence in context: A007765 A250726 A142291 * A229855 A229856 A208178
KEYWORD
nonn,easy
AUTHOR
Bruno Berselli, Feb 25 2012
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 April 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)