dc , 25 22 byte
9k5v1+2/3?*1-^5v/0k2/p
Provalo online!
Oppure salva il programma in un file ed eseguilo digitando
dc -f *filename*
Il programma accetta un numero intero non negativo n su stdin e genera la somma dei primi n numeri di Fibonacci anche su stdout. (Si presume che la sequenza di Fibonacci inizi con 0, come da esempi dell'OP.)
Questo programma usa la formula (F (3n-1) -1) / 2 per la somma dei primi n numeri di Fibonacci pari, dove F è la solita funzione di Fibonacci, data da F (0) = 0, F (1) = 1, F (n) = F (n-2) + F (n-1) per n> = 2.
dc è una calcolatrice basata su stack. Ecco una spiegazione dettagliata:
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.
A questo punto, il numero (1 + sqrt (5)) / 2 è in cima allo stack.
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.
A questo punto, 3n-1 è in cima allo stack (dove n è l'input) e (1 + sqrt (5)) / 2 è il secondo dall'alto.
^ # 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).
A questo punto, il numero in cima allo stack è (((1 + sqrt (5)) / 2) ^ (3n-1)) / sqrt (5). Il numero intero più vicino a questo numero è F (3n-1). Si noti che F (3n-1) è sempre un numero dispari.
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.