login
A184809
a(n) = n + floor(sqrt(3/2)*n).
5
2, 4, 6, 8, 11, 13, 15, 17, 20, 22, 24, 26, 28, 31, 33, 35, 37, 40, 42, 44, 46, 48, 51, 53, 55, 57, 60, 62, 64, 66, 68, 71, 73, 75, 77, 80, 82, 84, 86, 88, 91, 93, 95, 97, 100, 102, 104, 106, 109, 111, 113, 115, 117, 120, 122, 124, 126, 129, 131, 133, 135
OFFSET
1,1
COMMENTS
This is the Beatty sequence for 1 + sqrt(3/2).
Also, a(n) is the position of 3*n^2 in the sequence obtained by arranging all the numbers in the sets {2*h^2, h >= 1} and {3*k^2, k >= 1} in increasing order. - Clark Kimberling, Oct 20 2014
Also, numbers n such that floor((n+1)*sqrt(6)) - floor(n*sqrt(6)) = 3. - Clark Kimberling, Jul 15 2015
LINKS
FORMULA
a(n) = n + floor(r*n), where r = sqrt(3/2).
MATHEMATICA
(See A184808.)
PROG
(Magma) [n + Floor(n*Sqrt(3/2)): n in [1..70]]; // Vincenzo Librandi, Oct 23 2014
(PARI) main(size)={return(vector(size, n, n+floor(sqrt(3/2)*n)))}/* Anders Hellström, Jul 15 2015 */
CROSSREFS
Complement of A184808.
Cf. A184811.
Sequence in context: A329838 A190327 A241176 * A022839 A193766 A262773
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 22 2011
STATUS
approved