dc , 25 22 bajtów
9k5v1+2/3?*1-^5v/0k2/p
Wypróbuj online!
Lub zapisz program w pliku i uruchom go, wpisując
dc -f *filename*
Program przyjmuje nieujemną liczbę całkowitą n na stdin i wyświetla sumę pierwszych n parzystych liczb Fibonacciego na stdout. (Sekwencja Fibonacciego zaczyna się od 0, zgodnie z przykładami PO).
Ten program używa wzoru (F (3n-1) -1) / 2 do sumy pierwszych n parzystych liczb Fibonacciego, gdzie F jest zwykłą funkcją Fibonacciego, podaną przez F (0) = 0, F (1) = 1, F (n) = F (n-2) + F (n-1) dla n> = 2.
dc jest kalkulatorem stosowym. Oto szczegółowe wyjaśnienie:
9k # Sets the precision to 9 decimal places (which is more than sufficient).
5v # Push the square root of 5
1+ # Add 1 to the number at the top of the stack.
2/ # Divide the number at the top of the stack by 2.
W tym momencie liczba (1 + sqrt (5)) / 2 znajduje się na górze stosu.
3 # Push 3 on top of the stack.
? # Read a number from stdin, and push it.
\* # Pop two numbers from the stack, multiply them, and push the product
1- # Subtract 1 from the number at the top of the stack.
W tym momencie 3n-1 znajduje się na górze stosu (gdzie n jest wejściem), a (1 + sqrt (5)) / 2 jest drugi od góry.
^ # Pop two numbers from the stack (x, then y), compute the power y^x, and push that back on the stack.
5v/ # Divide the top of the stack by sqrt(5).
W tym momencie liczba na górze stosu to (((1 + sqrt (5)) / 2) ^ (3n-1)) / sqrt (5). Najbliższa liczba całkowita do tej liczby to F (3n-1). Zauważ, że F (3n-1) jest zawsze liczbą nieparzystą.
0k # Change precision to 0 decimal places.
2/ # Divide the top of the stack by 2, truncating to an integer.
p # Print the top of the stack on stdout.