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.

A374892 Obverse convolution (n)**(n(n+1)/2); see Comments.

This page as a plain text file.
%I A374892 #7 Sep 15 2024 10:55:43
%S A374892 0,1,12,216,5600,198000,9144576,533653120,38339288064,3320915760000,
%T A374892 340950896000000,40905397939101696,5666507699182387200,
%U A374892 897094997540641908736,160875919414586880000000,32426573960663769600000000,7296186062362650316241371136
%N A374892 Obverse convolution (n)**(n(n+1)/2); see Comments.
%C A374892 See A374848 for the definition of obverse convolution and a guide to related sequences.
%F A374892 a(n) ~ n^(2*n+1) / (2^n * exp(2*n + 2 - Pi*sqrt(2*n))). - _Vaclav Kotesovec_, Sep 15 2024
%t A374892 s[n_] := n; t[n_] := n (n + 1)/2;
%t A374892 u[n_] := Product[s[k] + t[n - k], {k, 0, n}]
%t A374892 Table[u[n], {n, 0, 20}]
%Y A374892 Cf. A000027, A000217, A374848.
%K A374892 nonn
%O A374892 0,3
%A A374892 _Clark Kimberling_, Sep 14 2024