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.

A288914 a(1) = 2; a(n) = a(floor(n/a(n-1))) + 1 for n > 1.

This page as a plain text file.
%I A288914 #16 Jun 23 2017 00:59:20
%S A288914 2,3,3,3,3,4,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,4,5,4,4,4,4,4,5,5,5,
%T A288914 4,5,4,5,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
%U A288914 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5
%N A288914 a(1) = 2; a(n) = a(floor(n/a(n-1))) + 1 for n > 1.
%C A288914 Least values of k such that a(k) = n are 1, 2, 6, 24, 120, 720, 5040, ... (n > 1).
%C A288914 These appear to be (n-1)!.  Verified for 2 <= n <= 11. - _Robert Israel_, Jun 22 2017
%H A288914 Robert Israel, <a href="/A288914/b288914.txt">Table of n, a(n) for n = 1..10000</a>
%p A288914 f:= proc(n) option remember;
%p A288914   procname(floor(n/procname(n-1)))+1
%p A288914 end proc:
%p A288914 f(1):= 2:
%p A288914 map(f, [$1..200]);# _Robert Israel_, Jun 22 2017
%t A288914 a = {2}; Do[AppendTo[a, a[[Floor[n/a[[n - 1]] ] ]] + 1], {n, 2, 105}]; a (* _Michael De Vlieger_, Jun 21 2017 *)
%o A288914 (PARI) q=vector(10000); q[1]=2; for(n=2, #q, q[n] = q[n\q[n-1]]+1); q
%Y A288914 Cf. A000142, A002024, A130147.
%K A288914 nonn,easy
%O A288914 1,1
%A A288914 _Altug Alkan_, Jun 19 2017