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!)
A143829 Numbers n such that 10n^2 - 1 is prime. 6
3, 6, 9, 12, 21, 30, 33, 36, 45, 48, 60, 69, 72, 75, 81, 87, 99, 108, 111, 114, 117, 120, 123, 126, 129, 153, 165, 168, 174, 177, 183, 201, 204, 207, 222, 234, 243, 252, 267, 279, 282, 285, 294, 303, 312, 315, 318, 339, 345, 348, 369, 378, 381, 384, 393, 396 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
p = 10; a = {}; Do[k = p x^2 - 1; If[PrimeQ[k], AppendTo[a, x]], {x, 1, 1000}]; a
Select[Range[500], PrimeQ[10#^2-1]&] (* Harvey P. Dale, Nov 11 2020 *)
PROG
(PARI) is(n)=isprime(10*n^2-1) \\ Charles R Greathouse IV, Feb 17 2017
CROSSREFS
Sequence in context: A282759 A203016 A153838 * A194420 A367952 A277823
KEYWORD
nonn
AUTHOR
Artur Jasinski, Sep 02 2008
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 25 07:41 EDT 2024. Contains 371964 sequences. (Running on oeis4.)