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.

A363255 Product_{n>=1} 1 / (1 - a(n)*x^n) = 1 + 1!!*x + 3!!*x^2 + 5!!*x^3 + 7!!*x^4 + ...

Original entry on oeis.org

1, 2, 12, 86, 816, 9126, 122028, 1855802, 32001504, 613558458, 12989299596, 300515004558, 7550646317520, 204680035934550, 5955892801274796, 185157207502788074, 6125200081143892800, 214837212308039658666, 7963817560398871790604, 311101097650387613661510
Offset: 1

Views

Author

Ilya Gutkovskiy, May 23 2023

Keywords

Crossrefs

Programs

  • Mathematica
    A[m_, n_] := A[m, n] = Which[m == 1, (2 n - 1)!!, m > n >= 1, 0, True, A[m - 1, n] - A[m - 1, m - 1] A[m - 1, n - m + 1]]; a[n_] := A[n, n]; a /@ Range[1, 20]
Showing 1-1 of 1 results.