1,1,5,17,61,217,?,?.

Answers were Sorted based on User's Feedback



1,1,5,17,61,217,?,?...

Answer / prasad shetty

773,2753

The logic looks like this
The number at position x will be
(number at x-1) * 3 + (number at x-2) *2

Is This Answer Correct ?    15 Yes 6 No

1,1,5,17,61,217,?,?...

Answer / vignesh1988i

1025

Is This Answer Correct ?    3 Yes 7 No

1,1,5,17,61,217,?,?...

Answer / hari

356

Is This Answer Correct ?    1 Yes 10 No

Post New Answer

More C Interview Questions

What is the use of gets and puts?

0 Answers  


define switch statement?

6 Answers   CTS,


What is a header file?

0 Answers  


main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above

0 Answers  


What is the maximum length of an identifier?

0 Answers  






What is %d used for?

0 Answers  


What is header file in c?

0 Answers  


what is difference between procedural language and functional language ?

4 Answers   Wipro,


What is difference between far and near pointers?

0 Answers  


main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....

2 Answers  


Is main an identifier in c?

0 Answers  


what does ‘segmentation violation’ mean?

1 Answers  


Categories