+ 2
Can you find the following sequence to n number... 3,4,7,11,18...to n term and make program.
9 Respostas
+ 13
https://code.sololearn.com/c6ErdwUmKLPK/?ref=app
//change 1st and 2nd term to 3 & 4 respectively
+ 7
Mathematical definition of this pattern
fn = f(n-1) + f (n-2)
f1 = 3
f2 = 4
+ 4
https://code.sololearn.com/c21y4M23hfBC/?ref=app
+ 3
@Manorama...
just to clarify...that your logic is perfectly fine...
though...please change the name to any other name as fibonacci series starts with 1...and..1-1-2-3-5-8-13
these is the fibonacci series...
4 not belongs to this series...
# for who dnt know abut this may be misguided...by the name
+ 2
@thanks for responce...
+ 1
@sayan thank you....
done