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.

A047002 T(n,n), array T given by A047000.

This page as a plain text file.
%I A047002 #23 Jan 14 2024 00:14:56
%S A047002 1,1,2,7,23,83,299,1107,4122,15523,58769,223848,856085,3286687,
%T A047002 12656513,48871469,189145479,733547091,2849962925,11090427510,
%U A047002 43219527353,168645172164,658834266936,2576566240218,10086236606187
%N A047002 T(n,n), array T given by A047000.
%C A047002 Alternatively, this sequence counts the meanders (walks starting at the origin and ending at any altitude >= 0 that may touch but never go below the x-axis) with n steps from {-2,-1,1,2}. - _David Nguyen_, Dec 20 2016
%H A047002 Andrew Howroyd, <a href="/A047002/b047002.txt">Table of n, a(n) for n = 0..200</a>
%H A047002 C. Banderier, C. Krattenthaler, A. Krinik, D. Kruchinin, V. Kruchinin, D. Nguyen, and M. Wallner, <a href="https://arxiv.org/abs/1609.06473">Explicit formulas for enumeration of lattice paths: basketball and the kernel method</a>, arXiv preprint arXiv:1609.06473 [math.CO], 2016.
%t A047002 seq[n_] := Module[{v = Table[1, n], m = Sum[ x^i, {i, -2, 2}] - 1, p = 1}, For[i = 3, i <= n, i++, p = Expand[p*m]; p = p - Select[p, Exponent[#, x] < 0&]; v[[i]] = ReplaceAll[p, x -> 1]]; v];
%t A047002 seq[25] (* _Jean-François Alcover_, Jul 11 2018, after _Andrew Howroyd_ *)
%o A047002 (PARI) seq(n)={my(v=vector(n), m=sum(i=-2, 2, x^i)-1, p=1); v[1]=v[2]=1; for(i=3, n, p*=m; p-=frac(p); v[i]=subst(p,x,1)); v} \\ _Andrew Howroyd_, Jun 27 2018
%Y A047002 Cf. A047000, A278398.
%K A047002 nonn
%O A047002 0,3
%A A047002 _Clark Kimberling_