tech question
Exam
Numerical Ability
1,1,2,12,14,26,40,264,304,568,3488 ....N
Whats the logic behind this
Read Solution (Total 1)
-
- 1+1 =2 0
1+2)*4=12; // 1
12+14=26 2
14+26=40; 3
40+26)*4=264 // 4
264+40=304; 5
304+264=568 6
568+304)*4=3488 // 7
import java.util.Arrays; // use only to print w/o loop at last
class Series {
public static void main(String args[])
{
int a[]= new int[20];
a[0]=1;
a[1]=1;
int k=1;
for(int i =2;i - 6 years agoHelpfull: Yes(0) No(0)
tech question Other Question