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

A184581
a(n) = floor((n + 1/4)*(2 + sqrt(2))).
4
4, 7, 11, 14, 17, 21, 24, 28, 31, 34, 38, 41, 45, 48, 52, 55, 58, 62, 65, 69, 72, 75, 79, 82, 86, 89, 93, 96, 99, 103, 106, 110, 113, 116, 120, 123, 127, 130, 134, 137, 140, 144, 147, 151, 154, 157, 161, 164, 168, 171, 174, 178, 181, 185, 188, 192, 195, 198
OFFSET
1,1
COMMENTS
Complement of A184580.
LINKS
MATHEMATICA
r=2^(1/2); c=1/4; s=r/(r-1);
Table[Floor[n*r-c*r], {n, 1, 120}] (* A184580 *)
Table[Floor[n*s+c*s], {n, 1, 120}] (* this sequence *)
PROG
(Magma) [Floor((n+1/4)*(2+Sqrt(2))): n in [1..60]]; // Vincenzo Librandi, Jun 10 2015
(PARI) for(n=1, 30, print1(floor((n+1/4)*(2+sqrt(2))), ", ")) \\ G. C. Greubel, Jan 27 2018
CROSSREFS
Cf. A184580.
Sequence in context: A078309 A195171 A184623 * A310725 A028373 A310726
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 17 2011
STATUS
approved