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”).

A172277
floor(n*(sqrt(13)-sqrt(3))).
2
0, 1, 3, 5, 7, 9, 11, 13, 14, 16, 18, 20, 22, 24, 26, 28, 29, 31, 33, 35, 37, 39, 41, 43, 44, 46, 48, 50, 52, 54, 56, 58, 59, 61, 63, 65, 67, 69, 71, 73, 74, 76, 78, 80, 82, 84, 86, 88, 89, 91, 93, 95, 97, 99, 101, 103, 104, 106, 108, 110, 112, 114, 116, 118, 119, 121, 123
OFFSET
0,3
LINKS
MAPLE
A172277:=n->floor(n*(sqrt(13)-sqrt(3))); seq(A172277(k), k=0..100); # Wesley Ivan Hurt, Nov 08 2013
MATHEMATICA
With[{c = Sqrt[13] - Sqrt[3]}, Floor[c Range[0, 80]]] (* Vincenzo Librandi, Aug 01 2013 *)
PROG
(Magma) [Floor(n*(Sqrt(13)-Sqrt(3))): n in [0..80]]; // Vincenzo Librandi, Aug 01 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Jan 30 2010
STATUS
approved