SOLVED: This is false
Beginning with 3, add the next consecutive prime (2) and then take that sum (5) and add that to next consecutive prime (3) to get (8), and so on...
$$ 3 + 2 = 5 $$ $$ 5 + 3 = 8 $$ $$ 8 + 5 = 13 $$ $$ 13 + 7 = 20 $$ $$ 20 + 11 = 31 $$ $$ 31 + 13 = 44 $$ $$ 44 + 17 = 61 $$ $$ 61 + 19 = 80 $$ $$ 80 + 23 = 103 $$
Could you prove that every odd number in this sequence is prime AND that every even number (except 2) minus 1 is prime as well? i.e (8-1=7)(20-1=19)
I will assume the suggested sequence is:
Starting with $5$, add primes starting from $3$; equivalently, starting from $3$, add primes starting from $2$, the first one.
However, the $21$st partial sum of primes is $712$, and $712+3=715$ which is obviously divisible by $5$.