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.

A212463 a(n) = ceiling( Pi^(n/3) ).

This page as a plain text file.
%I A212463 #22 Jan 19 2024 20:15:37
%S A212463 2,3,4,5,7,10,15,22,32,46,67,98,143,209,307,449,657,962,1409,2063,
%T A212463 3021,4424,6479,9489,13897,20354,29810,43659,63942,93649,137157,
%U A212463 200878,294205,430889,631077,924270,1353678
%N A212463 a(n) = ceiling( Pi^(n/3) ).
%H A212463 Vincenzo Librandi, <a href="/A212463/b212463.txt">Table of n, a(n) for n = 1..1000</a>
%t A212463 a[n_]:= Ceiling[((Pi)^(n/3))]; Table[a[n], {n, 1, 50}] (* _Vincenzo Librandi_, Feb 14 2013 *)
%o A212463 (Derive) PROG(y := [], n := 60, LOOP(IF(n = 0, RETURN y), y := ADJOIN(CEILING((pi)^(n/3)), y), n := n - 1))
%o A212463 (PARI) a(n) = ceil(Pi^(n/3)); \\ _Michel Marcus_, Jan 11 2016
%Y A212463 Cf. A102475, A102477, A212464.
%K A212463 easy,nonn
%O A212463 1,1
%A A212463 _Mohammad K. Azarian_, Jul 02 2012