OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
MATHEMATICA
nxt[{a_, t_}]:=Module[{c=Floor[(43+t)/3]}, {c, t+c}]; Rest[Transpose[ NestList[ nxt, {14, 0}, 40]][[1]]] (* Harvey P. Dale, Jun 12 2014 *)
Table[A120158[n], {n, 60}] (* G. C. Greubel, Aug 31 2023 *)
PROG
(Magma)
function f(n, a, b)
t:=0;
for k in [1..n-1] do
t+:= a+Floor((b+t)/3);
end for;
return t;
end function;
g:= func< n, a, b | f(n+1, a, b)-f(n, a, b) >;
A120158:= func< n | g(n, 14, 1) >;
[A120158(n): n in [1..60]]; // G. C. Greubel, Aug 31 2023
(SageMath)
@CachedFunction
[A120158(n) for n in range(1, 61)] # G. C. Greubel, Aug 31 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Graeme McRae, Jun 10 2006
STATUS
approved