|
| |
|
|
A154432
|
|
Numbers n such that 5n^2-n+1 is prime.
|
|
1
| |
|
|
1, 2, 3, 7, 8, 9, 10, 12, 14, 17, 19, 22, 24, 29, 33, 35, 42, 43, 50, 52, 57, 58, 65, 68, 72, 73, 75, 77, 94, 99, 105, 107, 117, 119, 120, 124, 129, 138, 140, 143, 155, 162, 178, 184, 187, 189, 190, 194, 199, 204, 208, 210, 219, 220, 229, 245, 248, 250, 252, 254, 255
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
EXAMPLE
| The associated primes are p=5 for n=1, p=19 for n=2, p=43 for n=3, p=239 for n=7.
|
|
|
MAPLE
| for n from 1 to 3000 do p := 5*n^2-n+1 ; if isprime(p) then printf("%d, ", n) ; fi; od: [From R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Jan 12 2009]
|
|
|
CROSSREFS
| Cf. A154431
Sequence in context: A089008 A047534 A118374 * A047361 A037461 A007607
Adjacent sequences: A154429 A154430 A154431 * A154433 A154434 A154435
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Vincenzo Librandi (vincenzo.librandi(AT)tin.it), Jan 09 2009
|
|
|
EXTENSIONS
| Removed 114. Extended - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Jan 12 2009
Misleading formula removed by R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Jul 24 2009
|
| |
|
|