login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A252229 The number of numbers j*r^k in the interval [n,n+1), where r = (1 + sqrt(5))/2, the golden ratio, and j >=0, k >= 0. 2
1, 2, 2, 2, 3, 2, 3, 2, 3, 2, 2, 3, 3, 3, 2, 2, 3, 3, 2, 2, 3, 3, 3, 2, 2, 3, 2, 3, 2, 4, 2, 2, 2, 4, 3, 3, 2, 2, 3, 2, 2, 3, 3, 2, 3, 2, 4, 3, 2, 2, 3, 2, 2, 3, 3, 4, 2, 2, 3, 3, 2, 3, 2, 3, 2, 2, 3, 3, 3, 2, 2, 3, 3, 2, 2, 3, 4, 3, 2, 2, 3, 2, 3, 2, 3, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The least n for which a(n) = 4 is 29; the least n for which a(n) = 5 is 199.
LINKS
FORMULA
a(n) = 1 + sum{s(n+1,j) - s(n,j), j=1..floor[(n+1)/r]}, where s(n,j) = floor[log(n/j)/log(r)], for n >= 1.
EXAMPLE
in [0,1): 0
in [1,2): 1, 1 + r
in [2,3): 2, 2 + r
in [3,4): 3, 1+2*r
in [4,5): 4, 1+3*r, 2 + r
MATHEMATICA
z = 100; r = (1 + Sqrt[5])/2;
s[n_, j_] := s[n, j] = Floor[Log[n/j]/Log[r]];
a[n_] := a[n] = Sum[s[n + 1, j] - s[n, j], {j, 1, Floor[(n + 1)/r]}];
t = Join[{1}, Table[1 + a[n], {n, 1, z}]] (* A252229 *)
CROSSREFS
Sequence in context: A089842 A258569 A091322 * A318490 A071215 A164024
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Dec 16 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 10:11 EDT 2024. Contains 371935 sequences. (Running on oeis4.)