A214990 Second nearest integer to n*r, where r = (1+ sqrt(5))/2, the golden ratio.
1, 4, 4, 7, 9, 9, 12, 12, 14, 17, 17, 20, 22, 22, 25, 25, 27, 30, 30, 33, 33, 35, 38, 38, 41, 43, 43, 46, 46, 48, 51, 51, 54, 56, 56, 59, 59, 62, 64, 64, 67, 67, 69, 72, 72, 75, 77, 77, 80, 80, 82, 85, 85, 88, 88, 90, 93, 93, 96, 98, 98, 101, 101, 103, 106, 106
Offset: 1
Keywords
Examples
n . . n*r . . nearest integer . second nearest 1 . . 1.618... . 2 . . . . . . . 1 = a(1) 2 . . 3.236... . 3 . . . . . . . 4 = a(2) 3 . . 4.854... . 5 . . . . . . . 4 = a(3) 4 . . 6.472... . 6 . . . . . . . 7 = a(4) 5 . . 8.090... . 8 . . . . . . . 9 = a(5)
Links
- Clark Kimberling, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
r = GoldenRatio; f[x_] := If[FractionalPart[x] < 1/2, Ceiling[x], Floor[x]] Table[f[r*n], {n, 1, 100}]
Comments