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.

A059275 Transform of A059226 applied to sequence 1, 1, 1, 1, 1, 1, 1, ...

This page as a plain text file.
%I A059275 #6 Jan 04 2017 02:43:57
%S A059275 1,2,8,39,214,1274,8028,52698,356630,2470848,17440690,124981126,
%T A059275 906887612,6650054278,49202240010,366856871768,2753772204894,
%U A059275 20793368929970,157831516488476,1203618076715682,9217256564429454,70852472349915280
%N A059275 Transform of A059226 applied to sequence 1, 1, 1, 1, 1, 1, 1, ...
%H A059275 G. C. Greubel, <a href="/A059275/b059275.txt">Table of n, a(n) for n = 0..250</a>
%t A059275 T[i_, j_]:= T[i, j] = Module[{r, s, t1}, If[i == 0 && j == 0, Return[1]];
%t A059275 If[j == 0, Return[1]]; t1 = T[i, j - 1]; For[r = 0, r <= i - j, r++,
%t A059275 For[s = 0, s <= j, s++, If[r + s != i, t1 = t1 + T[r + s, s]]]];
%t A059275 Return[t1]]; Table[T[n, n], {n, 0, 25}] (* _G. C. Greubel_, Jan 04 2017 *)
%Y A059275 Right diagonal of A059274. A059227 is transform of 1, 0, 0, 0, ...
%K A059275 nonn
%O A059275 0,2
%A A059275 _N. J. A. Sloane_, Jan 24 2001