dc , 25 22 bytes
9k5v1+2/3?*1-^5v/0k2/p
Experimente online!
Ou salve o programa em um arquivo e execute-o digitando
dc -f *filename*
O programa aceita um número inteiro não negativo n em stdin e gera a soma do primeiro n números de Fibonacci mesmo em stdout. (A sequência de Fibonacci é usada para começar com 0, conforme os exemplos do OP.)
Este programa usa a fórmula (F (3n-1) -1) / 2 para a soma dos primeiros n números Fibonacci pares, em que F é a função usual de Fibonacci, dada por F (0) = 0, F (1) = 1, F (n) = F (n-2) + F (n-1) para n> = 2.
dc é uma calculadora baseada em pilha. Aqui está uma explicação detalhada:
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.
Neste ponto, o número (1 + sqrt (5)) / 2 está no topo da pilha.
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.
Nesse ponto, 3n-1 está no topo da pilha (onde n é a entrada) e (1 + sqrt (5)) / 2 é o segundo da parte superior.
^ # 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).
Nesse ponto, o número no topo da pilha é (((1 + sqrt (5)) / 2) ^ (3n-1)) / sqrt (5). O número inteiro mais próximo desse número é F (3n-1). Observe que F (3n-1) é sempre um número ímpar.
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.