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 A329495 #8 Dec 20 2021 14:36:42 %S A329495 1,4,25,101,655,11077,94199,2005319,62541113,530615357,3888615949, %T A329495 2547768661,1603125774433,510235838011,76538488318091, %U A329495 10462945272539099,182249306891497151,7488308007918913129,6810487755999748187 %N A329495 Numerator of second moment of the n-th term of Ulam's "history-dependent random sequence". %H A329495 Mark Kac, <a href="https://doi.org/10.1016/0196-8858(89)90014-6">A history-dependent random sequence defined by Ulam</a>, Advances in Applied Mathematics 10.3 (1989): 270-277. See page 273, sigma_k and alpha_k. %e A329495 1, 4, 25/2, 101/3, 655/8, 11077/60, 94199/240, 2005319/2520, ... %p A329495 s:=[1]; a:=[0]; %p A329495 for N from 2 to 40 do # N = n+1 %p A329495 n:=N-1; %p A329495 t1:=s[n]+(1/n)*add(s[k],k=1..n)+2*s[n]/n+(2/n)*a[n]; %p A329495 t2:=s[n]+(1/n)*add(s[k],k=1..n)+a[n]+(2/n)*add(a[k],k=1..n); %p A329495 s:=[op(s),t1]; %p A329495 a:=[op(a),t2]; %p A329495 od: %p A329495 s; # sigma_n %p A329495 a; # alpha_n %p A329495 sn:=map(numer,s); # A329495 %p A329495 sd:=map(denom,s); # A329496 %p A329495 an:=map(numer,a); # A329497 %p A329495 ad:=map(denom,a); # A329498 %Y A329495 Cf. A329496, A329497, A327498. %K A329495 nonn,frac %O A329495 1,2 %A A329495 _N. J. A. Sloane_, Nov 17 2019