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.

A119244 Eigenvector of triangle A119245, so that a(n) = Sum_{k=0..floor(n/2)} A119245(n,k)*a(k).

This page as a plain text file.
%I A119244 #13 Sep 19 2023 15:32:04
%S A119244 1,1,3,10,37,144,579,2379,9927,41905,178498,765876,3305926,14342635,
%T A119244 62496000,273347910,1199555865,5279624910,23298471120,103057254030,
%U A119244 456833819925,2028998199360,9027655451400,40232167135245
%N A119244 Eigenvector of triangle A119245, so that a(n) = Sum_{k=0..floor(n/2)} A119245(n,k)*a(k).
%C A119244 Self-convolution equals A119243, which is the eigenvector of triangle A118919.
%H A119244 Andrew Howroyd, <a href="/A119244/b119244.txt">Table of n, a(n) for n = 0..1000</a>
%F A119244 G.f. A(x) satisfies: A(x) = A(-x/(1-4*x))/sqrt(1-4*x).
%F A119244 Eigenvector: a(n) = Sum_{k=0..floor(n/2)} a(k)*(4*k+1)*binomial(2*n+1,n-2*k)/(2*n+1) for n>=0, with a(0)=1.
%F A119244 From _Peter Bala_, Sep 16 2023: (Start)
%F A119244 It appears that the g.f. A(x) satisfies A(x^2) = 1/(1 + x)*A(x/(1 + x)^2).
%F A119244 If true, then F(x) := A(x^2) satisfies the functional equation F(x^2) = 1/(1 + x^2)*F(x/(1 + x^2)). Compare with Landen's transformation K(x^2) = 1/(1 + x^2)*K(2*x/(1 + x^2)) (for 0 <= x < 1) for the complete elliptic integral of the first kind K(x) = Integral_{t = 0..Pi/2} dt/sqrt(1 - x^2*sin^2(t)). (End)
%o A119244 (PARI) {a(n)=if(n==0,1,sum(k=0,n\2,a(k)*(4*k+1)*binomial(2*n+1,n-2*k)/(2*n+1)))}
%o A119244 (PARI) seq(n) = {my(a=vector(n+1)); a[1]=1; for(n=1, n, a[1+n] = sum(k=0, n\2, a[1+k]*(4*k+1)*binomial(2*n+1,n-2*k))/(2*n+1)); a} \\ _Andrew Howroyd_, Sep 19 2023
%Y A119244 Cf. A119245, A119243 (self-convolution).
%K A119244 nonn
%O A119244 0,3
%A A119244 _Paul D. Hanna_, May 10 2006