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.

A118023 Column 0 of triangle A118022, where the matrix square of A118022 shifts each column up 1 row, dropping the main diagonal of powers of 2.

This page as a plain text file.
%I A118023 #16 Nov 04 2024 18:36:11
%S A118023 1,1,3,19,243,6227,319251,32737427,6714170259,2754046149011,
%T A118023 2259333156408723,3706972573115098515,12164337831474297132435,
%U A118023 79833941280970262512121235,1047892334589811621056371520915
%N A118023 Column 0 of triangle A118022, where the matrix square of A118022 shifts each column up 1 row, dropping the main diagonal of powers of 2.
%C A118023 Numerators of the q-Catalan numbers for q = 1/2. - _John Keith_, Feb 19 2021
%F A118023 G.f.: 1 = Sum_{n>=0} a(n)*x^n*prod_{k=0, n} (1-2^k*x) with a(0)=1.
%F A118023 a(n) = 2^(n*(n-1)/2)*b(n) where b(0)=1 and b(n)=sum(i=0,n-1,b(i)*b(n-1-i)/2^i). - _Benoit Cloitre_, Oct 25 2006
%F A118023 G.f.: Sum_{n>=0} a(n)*x^n/2^(n*(n+1)/2) = 1/(1 - (x/2)/(1 - (x/2^2)/(1 - (x/2^3)/(1 - (x/2^4)/(1 - (x/2^5)/(1 - ...)))))), a continued fraction. - _Paul D. Hanna_, Sep 28 2012
%e A118023 1 = (1-x) + 1*x*(1-x)*(1-2*x) + 3*x^2*(1-x)*(1-2*x)*(1-4*x) + 19*x^3*(1-x)*(1-2*x)*(1-4*x)*(1-8*x) + 243*x^4*(1-x)*(1-2*x)*(1-4*x)*(1-8*x)*(1-16*x) + ...
%o A118023 (PARI) {a(n)=if(n==0, 1, polcoeff(1-sum(k=0, n-1, a(k)*x^k*prod(j=0, k, 1-2^j*x+x*O(x^n))), n))}
%o A118023 {a(n)=local(CF=1+x*O(x^n)); for(k=1, n, CF=1/(1-x/2^(n-k+1)*CF)); 2^(n*(n+1)/2)*polcoeff(CF, n)} \\ _Paul D. Hanna_, Sep 28 2012
%Y A118023 Cf. A118022.
%K A118023 nonn
%O A118023 0,3
%A A118023 _Paul D. Hanna_, Apr 10 2006