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!)
A102656 Numbers n such that 11*n + 1 is prime. 3
2, 6, 8, 18, 30, 32, 36, 38, 42, 56, 60, 62, 66, 78, 80, 86, 90, 92, 102, 116, 120, 128, 132, 146, 162, 170, 182, 188, 192, 198, 206, 210, 212, 216, 218, 230, 242, 246, 248, 260, 266, 270, 276, 288, 290, 296, 300, 302, 308, 312, 318, 330, 336, 338, 350, 356, 366 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = (A141849(n) -1)/11 = 2*A215667(n). - Robert Israel, Apr 03 2019
EXAMPLE
At n=2, 11*2 + 1 = 23 (prime).
At n=60, 11*60 + 1 = 661 (prime).
At n=120, 11*120 + 1 = 1321 (prime).
MAPLE
select(t -> isprime(11*t+1), [seq(i, i=2..1000, 2)]); # Robert Israel, Apr 03 2019
MATHEMATICA
Select[ Range[2, 367, 2], PrimeQ[11# + 1] &] (* Robert G. Wilson v, Feb 04 2005 *)
PROG
(PARI) is(n)=isprime(11*n+1) \\ Charles R Greathouse IV, Jun 06 2017
(Magma) [n: n in [1..380] | IsPrime(11*n+1)]; // G. C. Greubel, Apr 03 2019
(Sage) [n for n in (1..380) if is_prime(11*n+1)] # G. C. Greubel, Apr 03 2019
(GAP) Filtered([1..380], n-> IsPrime(11*n+1)) # G. C. Greubel, Apr 03 2019
CROSSREFS
Sequence in context: A154610 A053658 A032393 * A163911 A301799 A077638
KEYWORD
nonn
AUTHOR
Parthasarathy Nambi, Feb 02 2005
EXTENSIONS
More terms from Robert G. Wilson v, Feb 04 2005
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)