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.

A371669 G.f. satisfies A(x) = 1 + x * A(x)^3 * (1 + A(x))^2/2.

This page as a plain text file.
%I A371669 #12 Dec 25 2024 02:22:06
%S A371669 1,2,16,178,2300,32380,481932,7458370,118809868,1935217180,
%T A371669 32083715344,539615356884,9184652815816,157908543871712,
%U A371669 2738272978314500,47837620415491554,841151610003847564,14874918252400486060,264381545177102073600,4720297172922980155740
%N A371669 G.f. satisfies A(x) = 1 + x * A(x)^3 * (1 + A(x))^2/2.
%F A371669 a(n) = (1/n) * Sum_{k=0..floor((n-1)/2)} 2^(n-2*k) * binomial(n,k) * binomial(4*n-k,n-1-2*k) for n > 0.
%o A371669 (PARI) a(n) = if(n==0, 1, sum(k=0, (n-1)\2, 2^(n-2*k)*binomial(n, k)*binomial(4*n-k, n-1-2*k))/n);
%Y A371669 Cf. A068875, A100327, A219538.
%Y A371669 Cf. A371661.
%K A371669 nonn
%O A371669 0,2
%A A371669 _Seiichi Manyama_, Apr 02 2024