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.

A079719 a(n) = n + floor(Sum_{k a(k)/2) with a(0)=0.

This page as a plain text file.
%I A079719 #8 Aug 25 2025 17:01:04
%S A079719 0,1,2,4,7,12,19,29,45,68,103,156,235,353,531,797,1197,1796,2695,4044,
%T A079719 6067,9101,13653,20480,30721,46083,69125,103689,155534,233302,349954,
%U A079719 524932,787399,1181100,1771651,2657477,3986217,5979326,8968990,13453486
%N A079719 a(n) = n + floor(Sum_{k<n} a(k)/2) with a(0)=0.
%H A079719 Harvey P. Dale, <a href="/A079719/b079719.txt">Table of n, a(n) for n = 0..1000</a>
%F A079719 a(n)=A073941(n+4)-2 (and appears to be A005428(n+1)) =round[1.82505431574536323...*1.5^n - 2]
%e A079719 a(4) = 4+floor[(0+1+2+4)/2] = 4+floor[7/2] = 4+3 = 7
%t A079719 nxt[{n_,t_,a_}]:=Module[{c=n+1+Floor[t/2]},{n+1,t+c,c}]; NestList[nxt,{0,0,0},40][[All,3]] (* _Harvey P. Dale_, Aug 01 2021 *)
%K A079719 nonn,changed
%O A079719 0,3
%A A079719 _Henry Bottomley_, Feb 17 2003