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!)
A127344 Product of 12 consecutive primes. 4
7420738134810, 152125131763605, 2180460221945005, 20496326086283047, 155186468939000213, 832363787945546597, 3905707004975257109, 15393080549020130959, 57521511525285752531, 182568275710689562381 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(n) = coefficient of x^0 of the polynomial Prod_{j=0,11}(x-prime(n+j)) of degree 12; the roots of this polynomial are prime(n), ..., prime(n+11).
LINKS
MAPLE
A127344 := proc(n) mul(ithprime(n+k), k=0..11) ; end proc: # R. J. Mathar, Apr 05 2011
MATHEMATICA
a = {}; Do[AppendTo[a, Product[Prime[x + n], {n, 0, 11}]], {x, 1, 50}]; a
Times@@@Partition[Prime[Range[50]], 12, 1] (* Harvey P. Dale, Oct 21 2011 *)
PROG
(PARI) 1. {m=10; k=12; for(n=0, m-1, print1(a=prod(j=1, k, prime(n+j)), ", "))} 2. {m=10; k=12; for(n=1, m, print1(polcoeff(prod(j=0, k-1, (x-prime(n+j))), 0), ", "))} \\ Klaus Brockhaus, Jan 21 2007
(Magma) [&*[ NthPrime(n+k): k in [0..11] ]: n in [1..50] ]; // Vincenzo Librandi, Apr 03 2011
CROSSREFS
Sequence in context: A023051 A345865 A003826 * A186179 A058124 A282540
KEYWORD
nonn
AUTHOR
Artur Jasinski, Jan 11 2007
EXTENSIONS
Edited by Klaus Brockhaus, Jan 21 2007
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 24 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)