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

A341249
a(n) = floor(r*floor(s*n)), where r = 2 + sqrt(2) and s = sqrt(2).
2
3, 6, 13, 17, 23, 27, 30, 37, 40, 47, 51, 54, 61, 64, 71, 75, 81, 85, 88, 95, 99, 105, 109, 112, 119, 122, 129, 133, 139, 143, 146, 153, 157, 163, 167, 170, 177, 180, 187, 191, 194, 201, 204, 211, 215, 221, 225, 228, 235, 238, 245, 249, 252, 259, 262, 269
OFFSET
1,1
COMMENTS
Conjecture: 1 < r*s*n - a(n) < 2 for n >= 1.
MATHEMATICA
z = 140; r = 2 + Sqrt[2]; s = Sqrt[2]; f[x_] := Floor[r*Floor[s*x]];
Table[f[n], {n, 1, z}]
Table[Floor[(2+Sqrt[2])Floor[n Sqrt[2]]], {n, 60}] (* Harvey P. Dale, Oct 09 2022 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Feb 13 2021
STATUS
approved