OFFSET
1,2
COMMENTS
Also n such that A001654(n)/(n+1) is an integer.
LINKS
Robert Price, Table of n, a(n) for n = 1..845
EXAMPLE
For n=0 we have : 0*0/1=0 so n=0 belongs to the sequence. For n=4 we have : (0*0+1*1+1*1+2*2+3*3)/5=3 so n=5 belongs to the sequence. For n=9 we have : (0*0+1*1+1*1+2*2+3*3+5*5+8*8+13*13+21*21+34*34)/10=187 so n=9 belongs to the sequence.
MATHEMATICA
lst = {}; sm = 0; Do[sm = sm + Fibonacci[n]^2; If[Mod[sm, n + 1] == 0, AppendTo[lst, n]], {n, 0, 335}]; lst
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Ctibor O. Zizka, Mar 26 2010
STATUS
approved