OFFSET
1,1
REFERENCES
A. J. C. Cunningham, Binomial Factorisations, Vols. 1-9, Hodgson, London, 1923-1929; see Vol. 1, pp. 245-259.
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
A. J. C. Cunningham, Binomial Factorisations, Vols. 1-9, Hodgson, London, 1923-1929. [Annotated scans of a few pages from Volumes 1 and 2]
MATHEMATICA
Select[Range[700], PrimeQ[(#^2 + # + 1)/7] &] (* Harvey P. Dale, Sep 16 2011 *)
PROG
(Magma) /* See Crossrefs: */
A047348:=[m: m in [1..700] | m mod 7 in [2, 4]];
[n: n in A047348 | IsPrime( (n^2+n+1) div 7 )];
// Bruno Berselli, Sep 26 2012
(PARI) is(n)=isprime((n^2+n+1)/7) \\ Charles R Greathouse IV, May 22 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from Jon E. Schoenfield, Mar 24 2010
STATUS
approved