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!)
A278585 Numbers k such that k+1 is a prime, k+2 is twice a prime, k+3 is three times a prime, and k+4 is four times a prime. 4
12720, 16920, 19440, 24480, 49680, 61560, 104160, 229320, 255360, 259680, 266400, 291720, 298200, 311040, 331920, 419400, 423480, 436800, 446880, 471240, 525240, 532800, 539400, 581520, 600600, 663600, 704160, 709920, 783720, 867000, 904800, 908040, 918360 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(n) == 0 mod 120 (see comment in A163573). - Chai Wah Wu, Nov 30 2016
LINKS
MATHEMATICA
Select[Range[920000], AllTrue[{#+1, (#+2)/2, (#+3)/3, (#+4)/4}, PrimeQ]&] (* Harvey P. Dale, Aug 08 2021 *)
PROG
(Python)
from sympy import prime, isprime
A278585_list = [4*q-4 for q in (prime(i) for i in range(1, 10000)) if isprime(4*q-3) and isprime(2*q-1) and (not (4*q-1) % 3) and isprime((4*q-1)//3)] # Chai Wah Wu, Nov 30 2016
(PARI) is(k)=k%120==0 && isprime(k+1) && isprime(k/2+1) && isprime(k/3+1) && isprime(k/4+1) \\ Charles R Greathouse IV, Dec 03 2016
CROSSREFS
Equals A163573(n) - 1.
Positions of terms >= 4 in A278500, thus a subsequence of A278583, A089965 and A006093.
Sequence in context: A124411 A256809 A205939 * A288355 A163573 A236882
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Nov 30 2016
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 May 4 17:24 EDT 2024. Contains 372257 sequences. (Running on oeis4.)