OFFSET
1,1
COMMENTS
See first comment in A004215.
Corresponding Catalan numbers are 16796, 1289904147324, 45950804324621742364, 150853479205085351660700, ...
It is obvious that minimum value of a(n) - a(n-1) is 1. Is there a maximum value of a(n) - a(n-1)?
EXAMPLE
10 is a term because the 10th Catalan number is 16796 and there are no integer values of x, y and z for the equation 16796 = x^2 + y^2 + z^2.
PROG
(PARI) isA004215(n) = { my(fouri, j) ; fouri=1 ; while( n >=7*fouri, if( n % fouri ==0, j= n/fouri -7 ; if( j % 8 ==0, return(1) ) ; ) ; fouri *= 4 ; ) ; return(0) ; } { for(n=1, 400, if(isA004215(n), print1(n, ", ") ; ) ; ) ; }
c(n) = binomial(2*n, n)/(n+1);
for(n=0, 1e3, if(isA004215(c(n)), print1(n, ", ")));
CROSSREFS
KEYWORD
nonn
AUTHOR
Altug Alkan, Jan 15 2016
STATUS
approved