A094999 a(n) = floor(12^n/11^n).
1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 6, 6, 7, 8, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 21, 22, 25, 27, 29, 32, 35, 38, 42, 45, 50, 54, 59, 65, 71, 77, 84, 92, 100, 109, 119, 130, 142, 155, 169, 185, 201, 220, 240, 262, 285, 311, 340, 371, 404, 441, 481
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..900
Programs
-
Magma
[Floor(12^n / 11^n): n in [0..80]]; // Vincenzo Librandi, Sep 08 2011
-
Mathematica
Table[ Floor[(12/11)^n], {n, 0, 71}]
-
Maxima
A094999(n):=floor(12^n/11^n)$ makelist(A094999(n),n,0,60); /* Martin Ettl, Oct 25 2012 */
-
PARI
a(n)=12^n\11^n \\ Charles R Greathouse IV, Feb 04 2016
Formula
It appears that a(n) = floor(2^(n/8)). - Yakov Shusterman (yakov(AT)mobli.com), Dec 07 2008