OFFSET
1,1
EXAMPLE
a(2) = 9 because floor((3/2)^9)/floor((3/2)^2) = 19 is the smallest integer value > 1 of the form floor((3/2)^k)/floor((3/2)^2).
MATHEMATICA
Array[Block[{k = 2}, While[Nand[# > 1, IntegerQ@ #] &[Floor[(3/2)^k]/Floor[(3/2)^#]], k++]; k] &, 32] (* Michael De Vlieger, Jun 14 2018 *)
PROG
(PARI) a(n) = { my(q=floor((3/2)^n), p=0); while (my(t=floor((3/2)^p)); t < 2*q || t % q, p++); p } \\ Harry J. Smith, Oct 25 2009
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Dec 03 2001
EXTENSIONS
Edited by Harry J. Smith, Oct 25 2009
10 more terms from Harry J. Smith, Oct 25 2009
Edited by Jon E. Schoenfield, Jun 14 2018
STATUS
approved