OFFSET
1,1
COMMENTS
The goal is to generate a ratio near 1 from two well-known constants.
LINKS
Paulo Romero Zanconato Pinto, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = floor(n/(1-Pi/(sqrt(5)+1))).
EXAMPLE
For n = 10 we have that floor(10/(1-Pi/(sqrt(5)+1))) = floor(10/0.02919448...) = floor(342.5304983...) so a(10) = 342.
MATHEMATICA
f[n_] := Floor[n/(1-Pi/(Sqrt[5]+1))]; Array[f, 100, 1]
PROG
(PARI) a(n) = n\(1-Pi/(sqrt(5)+1)) \\ Michel Marcus, Oct 29 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Paulo Romero Zanconato Pinto, Sep 30 2016
EXTENSIONS
More terms from Michel Marcus, Oct 29 2016
STATUS
approved