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.

A182307 a(n+1) = a(n) + floor(a(n)/6) with a(0) = 6.

This page as a plain text file.
%I A182307 #15 Dec 22 2024 10:37:01
%S A182307 6,7,8,9,10,11,12,14,16,18,21,24,28,32,37,43,50,58,67,78,91,106,123,
%T A182307 143,166,193,225,262,305,355,414,483,563,656,765,892,1040,1213,1415,
%U A182307 1650,1925,2245,2619,3055,3564,4158,4851,5659,6602,7702,8985,10482,12229,14267,16644
%N A182307 a(n+1) = a(n) + floor(a(n)/6) with a(0) = 6.
%H A182307 Paolo Xausa, <a href="/A182307/b182307.txt">Table of n, a(n) for n = 0..5000</a>
%p A182307 f:= proc(n) option remember;  floor(procname(n-1)*7/6) end proc:
%p A182307 f(0):= 6:
%p A182307 map(f, [$0..100]); # _Robert Israel_, Dec 22 2024
%t A182307 NestList[# + Floor[#/6] &, 6, 100] (* _Paolo Xausa_, Dec 22 2024 *)
%o A182307 (Python)
%o A182307 a=6
%o A182307 for i in range(55):
%o A182307     print(a, end=', ')
%o A182307     a += a//6
%Y A182307 Cf. A061418, A100585, A182305, A182306.
%K A182307 nonn
%O A182307 0,1
%A A182307 _Alex Ratushnyak_, Apr 23 2012