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.

A120195 a(1)=2; a(n) = floor((17 + Sum_{j=1..n-1} a(j))/8).

This page as a plain text file.
%I A120195 #10 Mar 17 2024 18:00:23
%S A120195 2,2,2,2,3,3,3,4,4,5,5,6,7,8,9,10,11,12,14,16,18,20,22,25,28,32,36,40,
%T A120195 45,51,57,64,72,81,92,103,116,130,147,165,186,209,235,264,297,335,376,
%U A120195 423,476,536,603,678,763,858,966,1086,1222,1375,1547,1740,1958,2202
%N A120195 a(1)=2; a(n) = floor((17 + Sum_{j=1..n-1} a(j))/8).
%t A120195 f[s_] := Append[s, Floor[(17 + Plus @@ s)/8]]; Nest[f, {2}, 60] (* _Robert G. Wilson v_, Jul 08 2006 *)
%Y A120195 Cf. A073941, A112088, A072493.
%K A120195 nonn
%O A120195 1,1
%A A120195 _Graeme McRae_, Jun 10 2006
%E A120195 More terms from _Robert G. Wilson v_, Jul 08 2006