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.

A046301 Product of 3 successive primes.

This page as a plain text file.
%I A046301 #46 Sep 08 2022 08:44:56
%S A046301 30,105,385,1001,2431,4199,7429,12673,20677,33263,47027,65231,82861,
%T A046301 107113,146969,190747,241133,290177,347261,409457,478661,583573,
%U A046301 716539,871933,1009091,1113121,1201289,1317919,1564259,1879981,2279269,2494633,2837407,3127361,3532343
%N A046301 Product of 3 successive primes.
%H A046301 Vincenzo Librandi and K. D. Bajpai, <a href="/A046301/b046301.txt">Table of n, a(n) for n = 1..10000</a> (first 1000 terms from Vincenzo Librandi)
%F A046301 Sum_{n>=1} 1/a(n) = A242187. - _Amiram Eldar_, Nov 19 2020
%e A046301 From _K. D. Bajpai_, Aug 27 2014: (Start)
%e A046301 a(2) = 105 is in the sequence because 105 = 3* 5 * 7, product of three successive primes.
%e A046301 a(3) = 385 is in the sequence because 385 = 5 * 7 * 11, product of three successive primes.
%e A046301 (End)
%p A046301 A046301:=n->ithprime(n)*ithprime(n+1)*ithprime(n+2): seq(A028560(n), n=1..100);  # _K. D. Bajpai_, Aug 27 2014
%t A046301 Table[Prime[n] Prime[n+1] Prime[n+2],{n,50}]   (* _K. D. Bajpai_, Aug 27 2014 *)
%t A046301 Times@@@Partition[Prime[Range[40]],3,1] (* _Harvey P. Dale_, Mar 25 2019 *)
%o A046301 (Magma) [NthPrime(n)*NthPrime(n+1)*NthPrime(n+2): n in [1..31]]; /* Or: */ [&*[ NthPrime(n+k): k in [0..2] ]: n in [1..31] ]; // _Bruno Berselli_, Feb 25 2011
%o A046301 (PARI) a(n)=prime(n)*prime(n+1)*prime(n+2); \\ _Joerg Arndt_, Aug 30 2014
%o A046301 (Haskell)
%o A046301 a046301 n = a046301_list !! (n-1)
%o A046301 a046301_list = zipWith3 (((*) .) . (*))
%o A046301                a000040_list (tail a000040_list) (drop 2 a000040_list)
%o A046301 -- _Reinhard Zumkeller_, May 12 2015
%Y A046301 Cf. A002110, A006094, A046302, A046303, A046324, A046325, A046326, A046327.
%Y A046301 Cf. A000040, A242187, A257891.
%K A046301 nonn,easy
%O A046301 1,1
%A A046301 _Patrick De Geest_, Jun 15 1998
%E A046301 Offset changed from 0 to 1 by _Vincenzo Librandi_, Jan 16 2012