repl.txt (512B)
1 2 {{alias}}( n ) 3 Computes the nth non-Fibonacci number. 4 5 If not provided a nonnegative integer value, the function returns `NaN`. 6 7 If provided `NaN`, the function returns `NaN`. 8 9 Parameters 10 ---------- 11 n: integer 12 Input value. 13 14 Returns 15 ------- 16 y: number 17 Non-Fibonacci number. 18 19 Examples 20 -------- 21 > var v = {{alias}}( 1 ) 22 4 23 > v = {{alias}}( 2 ) 24 6 25 > v = {{alias}}( 3 ) 26 7 27 > v = {{alias}}( NaN ) 28 NaN 29 30 See Also 31 -------- 32