login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A190367
n + [n*r/u] + [n*s/u] + [n*t/u]; r=sqrt(2), s=1/r, t=sqrt(3), u=1/t.
4
7, 14, 22, 29, 38, 45, 53, 60, 69, 76, 83, 91, 98, 107, 114, 122, 129, 138, 145, 152, 160, 167, 176, 183, 191, 198, 207, 214, 222, 229, 236, 245, 252, 260, 267, 276, 283, 291, 298, 305, 314, 321, 329, 336, 345, 352, 360, 367, 376, 383, 390, 398, 405, 414, 421, 429, 436, 445, 452, 459, 467, 474, 483, 490, 498, 505, 514, 521, 529
OFFSET
1,1
COMMENTS
See A190364.
LINKS
FORMULA
A190364: a(n) = n + [n/2] + [n*sqrt(3/2)] + [n*sqrt(1/6)].
A190365: b(n) = 3*n + [n*sqrt(6)] + [n*sqrt(2/3)].
A190366: c(n) = n + [n*sqrt(2/3)] + [n*sqrt(1/6)] + [n/3].
A190367: d(n) = 4*n + [n*sqrt(6)] + [n*sqrt(3/2)].
MATHEMATICA
Table[4*n + Floor[n*Sqrt[3/2]] + Floor[n*Sqrt[6]], {n, 1, 50}] (* G. C. Greubel, Jan 31 2018 *)
PROG
(PARI) for(n=1, 30, print1(4*n + floor(n*sqrt(3/2)) + floor(n*sqrt(6)), ", ")) \\ G. C. Greubel, Jan 31 2018
(Magma) [4*n + Floor(n*Sqrt(3/2)) + Floor(n*Sqrt(6)): n in [1..30]]; // G. C. Greubel, Jan 31 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, May 09 2011
STATUS
approved