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.
%I A352864 #6 Apr 07 2022 09:25:03 %S A352864 1,1,1,3,6,13,34,84,230,653,1893,5794,18080,58345,193761,657959, %T A352864 2295398,8177305,29775086,110676222,419169483,1617868052,6353518921, %U A352864 25376986471,103017630200,424704411564,1777458163195,7546547411488,32490058003914,141774055915497,626739661952337 %N A352864 a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/2)} binomial(n-k,k) * a(n-2*k-1). %F A352864 G.f. A(x) satisfies: A(x) = 1 + x * A(x/(1 - x^2)) / (1 - x^2)^2. %t A352864 a[0] = 1; a[n_] := a[n] = Sum[Binomial[n - k, k] a[n - 2 k - 1], {k, 0, Floor[(n - 1)/2]}]; Table[a[n], {n, 0, 30}] %t A352864 nmax = 30; A[_] = 0; Do[A[x_] = 1 + x A[x/(1 - x^2)]/(1 - x^2)^2 + O[x]^(nmax + 1) // Normal,nmax + 1]; CoefficientList[A[x], x] %Y A352864 Cf. A040027, A172383, A352865. %K A352864 nonn %O A352864 0,4 %A A352864 _Ilya Gutkovskiy_, Apr 06 2022