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.

A120174 a(1)=5; a(n)=floor((29+sum(a(1) to a(n-1)))/5).

This page as a plain text file.
%I A120174 #7 Sep 12 2024 15:27:53
%S A120174 5,6,8,9,11,13,16,19,23,27,33,39,47,57,68,82,98,118,141,169,203,244,
%T A120174 293,351,421,506,607,728,874,1049,1258,1510,1812,2174,2609,3131,3757,
%U A120174 4509,5410,6492
%N A120174 a(1)=5; a(n)=floor((29+sum(a(1) to a(n-1)))/5).
%H A120174 Robert Israel, <a href="/A120174/b120174.txt">Table of n, a(n) for n = 1..10000</a>
%p A120174 R:= 5: s:= 5:
%p A120174 for i from 2 to 100 do
%p A120174   v:= floor((29+s)/5);
%p A120174   R:= R,v;
%p A120174   s:= s+v;
%p A120174 od:
%p A120174 R; # _Robert Israel_, Sep 11 2024
%Y A120174 Cf. A073941, A112088, A072493.
%K A120174 nonn
%O A120174 1,1
%A A120174 _Graeme McRae_, Jun 10 2006