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.

A110571 Sums of rows of the triangle in A110570.

This page as a plain text file.
%I A110571 #6 Aug 31 2017 23:02:17
%S A110571 1,2,4,8,12,20,22,36,38,50,54,76,66,100,94,106,116,152,128,180,154,
%T A110571 182,194,240,192,258,250,272,262,340,264,376,330,362,374,402,352,488,
%U A110571 442,462,428,564,444,604,518,536,586,684,534,698,620,686,662,812,658,782
%N A110571 Sums of rows of the triangle in A110570.
%H A110571 G. C. Greubel, <a href="/A110571/b110571.txt">Table of n, a(n) for n = 0..1000</a>
%t A110571 T[n_, k_] := T[n, k] = If[Min[k, n - k] == 0, 1, 1 + T[n - Min[k, n - k], Min[k, n - k]]]; Table[Sum[T[n, k], {k, 0, n}], {n, 0, 50}] (* _G. C. Greubel_, Aug 31 2017 *)
%K A110571 nonn
%O A110571 0,2
%A A110571 _Reinhard Zumkeller_, Jul 28 2005