|
| |
|
|
A108762
|
|
Numbers n such that 911*n + 13 is prime.
|
|
0
| |
|
|
0, 6, 18, 20, 38, 54, 60, 66, 68, 74, 80, 84, 90, 114, 126, 138, 164, 170, 174, 180, 194, 198, 228, 230, 248, 258, 264, 270, 284, 300, 350, 356, 366, 368, 378, 384, 396, 426, 438, 440, 444, 458, 480, 500, 506, 516, 528, 536, 566, 570, 578, 600, 608, 614, 618
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
EXAMPLE
| If n=0 then 911*n + 13 = 13 (prime).
If n=74 then 911*n + 13 = 67427 (prime).
|
|
|
MAPLE
| a:=proc(n) if isprime(911*n+13)=true then n else fi end: seq(a(n), n=0..900); (Deutsch)
|
|
|
MATHEMATICA
| Select[Range[0, 650], PrimeQ[911#+13]&] (* From Harvey P. Dale, Aug 14 2011 *)
|
|
|
CROSSREFS
| Sequence in context: A074791 A093106 A114452 * A088724 A124276 A107405
Adjacent sequences: A108759 A108760 A108761 * A108763 A108764 A108765
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Parthasarathy Nambi (PachaNambi(AT)yahoo.com), Jul 25 2005
|
|
|
EXTENSIONS
| More terms from Emeric Deutsch (deutsch(AT)duke.poly.edu), Aug 07 2005
|
| |
|
|