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.

A061215 a(n)= product of all odd composite numbers between n-th prime and (n+1)-st prime.

This page as a plain text file.
%I A061215 #9 Mar 12 2015 19:10:04
%S A061215 1,1,1,9,1,15,1,21,675,1,1155,39,1,45,2499,3135,1,4095,69,1,5775,81,
%T A061215 7395,803985,99,1,105,1,111,2978730129375,129,17955,1,429774345,1,
%U A061215 23715,25599,165,28899,30975,1,1196537265,1,195,1,361878338745
%N A061215 a(n)= product of all odd composite numbers between n-th prime and (n+1)-st prime.
%H A061215 Harry J. Smith, <a href="/A061215/b061215.txt">Table of n, a(n) for n=1,...,2000</a>
%e A061215 a(9) = 675 = 25 * 27, as 23 is the 9th prime and 29 is the 10th prime.
%o A061215 (PARI) for(n=1,60,p=1:for(k=prime(n)+1, prime(n+1)-1,if(k%2==1,p=p*k)):print1(p","))
%o A061215 (PARI) { n=0; q=2; forprime (p=3, prime(2001), a=1; for (i=q + 1, p - 1, if (i%2==1, a*=i)); q=p; write("b061215.txt", n++, " ", a) ) } \\ _Harry J. Smith_, Jul 19 2009
%K A061215 nonn
%O A061215 1,4
%A A061215 _Amarnath Murthy_, Apr 22 2001
%E A061215 More terms from _Ralf Stephan_, Mar 31 2003
%E A061215 First term removed by _Harry J. Smith_, Jul 19 2009