YOU SAID:
The Fibonacci numbers go as follows. 1,1,2,3,5,8,13,21,34,55,89,144,233
INTO JAPANESE
フィボナッチ数は次のようになります。 1,1,2,3,5,8,13,21,34,55,89,144,233
BACK INTO ENGLISH
The Fibonacci number is as follows. 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233
INTO JAPANESE
FIB 関数はフィボナッチ数列 (1, 1, 2, 3, 5, 8, 13, 21...最初の 2 つ以降は前の 2 つの数値の合計となっている) の N 番目の数値を返します。FIB(0) は 0 と定義されています。
BACK INTO ENGLISH
Function FIB calculates the Nth term of a Fibonacci sequence (1, 1, 2, 3, 5, 8, 13, 21...), in which each number, after the first two, is the sum of the two numbers immediately preceding it. FIB(0) is defined to be 0.
INTO JAPANESE
FIB 関数はフィボナッチ数列 (1, 1, 2, 3, 5, 8, 13, 21...最初の 2 つ以降は前の 2 つの数値の合計となっている) の N 番目の数値を返します。FIB(0) は 0 と定義されています。
BACK INTO ENGLISH
Function FIB calculates the Nth term of a Fibonacci sequence (1, 1, 2, 3, 5, 8, 13, 21...), in which each number, after the first two, is the sum of the two numbers immediately preceding it. FIB(0) is defined to be 0.
That's deep, man.