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.

Showing 1-1 of 1 results.

A333370 Convolution of primorial numbers (A002110) with themselves.

Original entry on oeis.org

1, 4, 16, 84, 576, 5820, 72720, 1181460, 21984480, 493882620, 13996733520, 430612001820, 15742074348000, 641147559872820, 27488197348531920, 1286344285877911260, 67817877972050366160, 3984226025421591129180, 242703493548359285922480, 16211176424801583698573100
Offset: 0

Views

Author

Ilya Gutkovskiy, Mar 17 2020

Keywords

Crossrefs

Programs

  • Maple
    p:= proc(n) option remember; `if`(n<1, 1, ithprime(n)*p(n-1)) end:
    a:= n-> add(p(i)*p(n-i), i=0..n):
    seq(a(n), n=0..20);  # Alois P. Heinz, Mar 17 2020
  • Mathematica
    primorial[n_] := Product[Prime[k], {k, 1, n}]; a[n_] := Sum[primorial[k] primorial[n - k], {k, 0, n}]; Table[a[n], {n, 0, 19}]

Formula

G.f.: (Sum_{k>=0} prime(k)# * x^k)^2, where prime()# = A002110.
a(n) = Sum_{k=0..n} prime(k)# * prime(n-k)#.
Showing 1-1 of 1 results.