cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A046302 Products of 4 successive primes.

This page as a plain text file.
%I A046302 #27 Sep 24 2023 07:52:31
%S A046302 210,1155,5005,17017,46189,96577,215441,392863,765049,1363783,2022161,
%T A046302 3065857,4391633,6319667,8965109,12780049,17120443,21182921,27433619,
%U A046302 33984931,42600829,56606581,72370439,89809099,107972737,121330189
%N A046302 Products of 4 successive primes.
%H A046302 Vincenzo Librandi, <a href="/A046302/b046302.txt">Table of n, a(n) for n = 1..1000</a>
%H A046302 C. Cobeli and A. Zaharescu, <a href="http://dx.doi.org/10.1080/10236198.2014.940337">A game with divisors and absolute differences of exponents</a>, Journal of Difference Equations and Applications, Vol. 20, #11 (2014) pp. 1489-1501, DOI: 10.1080/10236198.2014.940337. Also available as <a href="http://arxiv.org/abs/1411.1334">arXiv:1411.1334 [math.NT]</a>, 2014.
%F A046302 a(n) = Product_{j=n..n+3} prime(j). - _Jon E. Schoenfield_, Jan 07 2015
%t A046302 lst={};Do[p0=Prime[n];p1=Prime[n+1];p2=Prime[n+2];p3=Prime[n+3];a=p0*p1*p2*p3;AppendTo[lst,a],{n,5!}];lst (* _Vladimir Joseph Stephan Orlovsky_, Mar 10 2009 *)
%t A046302 Times@@@Partition[Prime[Range[50]],4,1] (* _Harvey P. Dale_, Sep 19 2011 *)
%o A046302 (Magma) [&*[ NthPrime(n+k): k in [0..3] ]: n in [1..26] ]; // _Bruno Berselli_, Feb 25 2011
%Y A046302 Cf. A002110, A006094, A046301, A046303, A046324, A046325, A046326, A046327.
%K A046302 nonn,easy
%O A046302 1,1
%A A046302 _Patrick De Geest_, Jun 15 1998
%E A046302 Offset changed from 0 to 1 by _Vincenzo Librandi_, Jan 16 2012