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!)
A237189 Numbers k such that k+1, 2k+1, 3k+1, 4k+1 are all prime. 4
330, 1530, 3060, 4260, 4950, 6840, 10830, 15390, 18120, 23010, 25410, 26040, 31770, 33300, 40110, 41490, 45060, 49830, 53880, 59340, 65850, 70140, 73770, 78540, 88740, 95460, 96930, 109470, 111720, 112620, 117720, 131310, 133200, 134730, 135300, 150150, 165900 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A subsequence of A064238.
All terms are divisible by 30, and b(n)=a(n)/30 begins: 11, 51, 102, 142, 165, 228, 361, 513, 604, 767, 847, 868, 1059, 1110, 1337, 1383, 1502, 1661, 1796, 1978, 2195, ...
LINKS
Jon E. Schoenfield, Table of n, a(n) for n = 1..10000 (first 1000 terms from Giovanni Resta)
FORMULA
a(n) = 2*(A105653(n) + 1) = 2*A124409(n). - Hugo Pfoertner, May 03 2021
PROG
(Python)
import sympy
from sympy import isprime
for n in range(0, 100000, 2):
if isprime(n+1) and isprime(2*n+1) and isprime(3*n+1) and isprime(4*n+1):
print(str(n), end=', ')
CROSSREFS
Sequence in context: A300009 A244264 A117345 * A064262 A126997 A205993
KEYWORD
nonn
AUTHOR
Alex Ratushnyak, Feb 04 2014
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 19 23:15 EDT 2024. Contains 371798 sequences. (Running on oeis4.)