login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A090090 a(n) = prime(n)*prime(n+3). 6
14, 33, 65, 119, 209, 299, 493, 589, 851, 1189, 1333, 1739, 2173, 2537, 2867, 3551, 4189, 4453, 5293, 5893, 6497, 7663, 8383, 9167, 10379, 11009, 11639, 13589, 14279, 15481, 17653, 19519, 20687, 21823, 24287, 25217, 27161, 29177, 30227, 33043 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

EXAMPLE

a(5) = prime(5)*prime(8) = 11*19 = 209.

MATHEMATICA

Table[ Prime[n] Prime[n + 3], {n, 1, 40}] (from Robert G. Wilson v Jan 22 2004)

First[#]*Last[#]&/@Partition[Prime[Range[200]], 4, 1] (* From Harvey P. Dale, Dec 18 2011 *)

PROG

def prime_gaps(n): primegaps = [] nprimes = primes_first_n(n+1) for i in range(3, n+1): primegaps.append(nprimes[i]*nprimes[i-3]) return primegaps print prime_gaps(60) - Zerinvary Lajos (zerinvarylajos(AT)yahoo.com), Jul 08 2008

CROSSREFS

Subset of the squarefree semiprimes, A006881. Cf. A006094, A090076.

Sequence in context: A191676 A191866 A162279 * A116150 A019272 A018949

Adjacent sequences:  A090087 A090088 A090089 * A090091 A090092 A090093

KEYWORD

easy,nonn

AUTHOR

Felix Tubiana (fat2(AT)columbia.edu), Jan 21 2004

EXTENSIONS

Extended by Robert G. Wilson v (rgwv(AT)rgwv.com), Jan 22 2004

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 23:16 EST 2012. Contains 205687 sequences.