login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A216044
Numbers k such that Sum_{j=1..k-1} (4j)!/16^j is an integer.
5
1, 3, 13, 15, 61, 106, 253, 27545, 62785, 218107, 1004593
OFFSET
1,2
COMMENTS
Next term > 1200000.
MATHEMATICA
seq={}; sum=0; fak=1; k=0; While[k<10000, sum+=fak; If[Denominator[sum]==1, AppendTo[seq, k+1]]; k++; fak*=k*(4*k-1)*(4*k-2)*(4*k-3)/4; ]; seq
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Vaclav Kotesovec, Aug 30 2012
STATUS
approved