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.

A368790 a(n) = (3*n-2)!!! * Sum_{k=0..n} 1/(3*k-2)!!!.

Original entry on oeis.org

1, 2, 9, 64, 641, 8334, 133345, 2533556, 55738233, 1393455826, 39016763129, 1209519657000, 41123668338001, 1521575728506038, 60863029140241521, 2617110253030385404, 120387071639397728585, 5898966510330488700666, 306746258537185412434633
Offset: 0

Views

Author

Seiichi Manyama, Jan 05 2024

Keywords

Crossrefs

Row sums of A136214.

Programs

  • PARI
    a007559(n) = prod(k=1, n, 3*k-2);
    a(n) = a007559(n)*sum(k=0, n, 1/a007559(k));

Formula

a(n) = (3*n-2) * a(n-1) + 1.
Showing 1-1 of 1 results.