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.

A051357 Chernoff sequence A006939 divided by 2.

This page as a plain text file.
%I A051357 #11 Sep 08 2022 08:44:59
%S A051357 1,6,180,37800,87318000,2622159540000,1338638666765400000,
%T A051357 12984380089637682726000000,2896722619368127899492763620000000,
%U A051357 18740906719713843949122453226304292600000000
%N A051357 Chernoff sequence A006939 divided by 2.
%H A051357 G. C. Greubel, <a href="/A051357/b051357.txt">Table of n, a(n) for n = 1..37</a>
%F A051357 a(n) = Product_{k=1..n} prime(k)^(n-k+1) / 2.
%t A051357 Table[Product[Prime[k]^(n - k + 1), {k, 1, n}]/2, {n, 1, 15}] (* _G. C. Greubel_, Oct 14 2018 *)
%o A051357 (PARI) for(n=1, 15, print1(prod(k=1,n, prime(k)^(n-k+1))/2, ", ")) \\ _G. C. Greubel_, Oct 14 2018
%o A051357 (Magma) [(&*[NthPrime(k)^(n-k+1): k in [1..n]])/2: n in [1..15]]; // _G. C. Greubel_, Oct 14 2018
%K A051357 easy,nonn
%O A051357 1,2
%A A051357 _Judson Neer_