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.

A326864 G.f.: Product_{k>=1} (1 + x^k/k^2) = Sum_{n>=0} a(n)*x^n/n!^2.

Original entry on oeis.org

1, 1, 1, 13, 100, 1876, 57636, 2051316, 104640768, 6819033600, 576652089600, 57187381536000, 7057192160793600, 1014733052692300800, 172646881540527744000, 33848454886497227289600, 7637231669166956976537600, 1948418678155880277481881600
Offset: 0

Views

Author

Vaclav Kotesovec, Jul 27 2019

Keywords

Examples

			a(n) ~ c * (n-1)!^2, where c = A156648 = Product_{k>=1} (1 + 1/k^2) = sinh(Pi)/Pi = 3.67607791037497772...
		

Crossrefs

Programs

  • Maple
    b:= proc(n, i) option remember; `if`(i*(i+1)/2 b(n$2):
    seq(a(n), n=0..20);  # Alois P. Heinz, Jul 27 2023
  • Mathematica
    nmax = 20; CoefficientList[Series[Product[(1+x^k/k^2), {k, 1, nmax}], {x, 0, nmax}], x] * Range[0, nmax]!^2