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

A184749
a(n) = floor(n*s+h-h*s), where s = (7 + sqrt(5))/4, h = -1/2; complement of A184748.
2
2, 5, 7, 9, 12, 14, 16, 19, 21, 23, 26, 28, 30, 32, 35, 37, 39, 42, 44, 46, 49, 51, 53, 56, 58, 60, 62, 65, 67, 69, 72, 74, 76, 79, 81, 83, 86, 88, 90, 93, 95, 97, 99, 102, 104, 106, 109, 111, 113, 116, 118, 120, 123, 125, 127, 129, 132, 134, 136, 139, 141, 143, 146, 148, 150, 153, 155, 157, 159, 162, 164, 166
OFFSET
1,1
MATHEMATICA
r=4-5^(1/2); h=-1/2; s=r/(r-1);
Table[Floor[n*r+h], {n, 1, 120}] (* A184748 *)
Table[Floor[n*s+h-h*s], {n, 1, 120}] (* A184749 *)
PROG
(Python)
from math import floor, sqrt
s=(7+sqrt(5))/4
h=-1/2
n=50 #number of terms
result = []
for i in range(1, n+1):
ans = floor(i*s+h-h*s)
result.append(ans)
print(result)
# Adam Hugill, Feb 22 2022
CROSSREFS
Cf. A184748.
Sequence in context: A246706 A304498 A184743 * A047386 A187416 A243808
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 20 2011
STATUS
approved