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”).

A246637
Integers of the form (2^(k+1) - 1)/C(k+2,2).
4
1, 1, 3, 1533, 4870483401, 10632494904416274948861848751148863, 442778652527729430645666843207235634221292901, 8594831104112238244501123836952492157088005557663896974587707618787108, 970692073484990407927190417652798419153
OFFSET
1,3
COMMENTS
The numbers k for which (2^(k+1) - 1)/C(k+2,2) is an integer are given by A246636. For each such k, (2^(k+1) - 1)/C(k+2,2) is the mean of the numbers in all the rows of Pascal's triangle, from row 0 through row k.
EXAMPLE
The sum of the numbers in Pascal's triangle, from row 0 through row 17, is 2^18 - 1 = 262143; the number of such numbers is C(19,2) = 171, and 262143/171 = 1533; thus is in A246637 and 17 is in A246636.
MATHEMATICA
z = 3000; t = Select[Range[0, z], IntegerQ[(2^(# + 1) - 1)/Binomial[# + 2, 2]] &] (* A246636 *)
Table[(2^(t[[n]] + 1) - 1)/Binomial[t[[n]] + 2, 2], {n, 1, 10}] (*A246637*)
CROSSREFS
Sequence in context: A285656 A239503 A118050 * A302132 A346653 A258720
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Sep 01 2014
STATUS
approved