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.
%I A254400 #4 Jan 30 2015 06:35:25 %S A254400 2,2,4,10,33,193,2684,139116,51888311,373769884171,228510656987187971, %T A254400 109234465617278065859643766,1141667222716533804555279991265973169394, %U A254400 38575298818045633410275497202805726438253675072452563405216 %N A254400 a(n) = floor(b(n)), where b(n) = b(n-1)^(3/2), b(1) = 2. %F A254400 a(n) = floor(2^((3/2)^(n-1))). %t A254400 Floor[RecurrenceTable[{a[1]==2,a[n]==a[n-1]^(3/2)},a,{n,1,15}]] %t A254400 Table[Floor[2^((3/2)^(n-1))], {n, 1, 15}] %Y A254400 Cf. A254401, A254403, A254405. %K A254400 nonn,easy %O A254400 1,1 %A A254400 _Vaclav Kotesovec_, Jan 30 2015