login
A246649
Integers of the form (2^(k+1) - 1)/(2*k + 1).
2
1, 1, 17, 1334440654591915542993625911497130241, 948042080603099421350928003060030968743284199473954197137709371401
OFFSET
1,3
COMMENTS
The next term has 192 digits. - Harvey P. Dale, Feb 05 2019
EXAMPLE
The sum of the numbers row 7 of the triangular array at A027926 is 2^8 - 1 = 255, and the number of numbers in row 7 is 15, and 255/15 = 17; thus 7 is in this sequence, and 17 is in A246649.
MATHEMATICA
z = 140000; u = Select[Range[0, z], IntegerQ[(2^(# + 1) - 1)/(2 # + 1)] &] (* A246648 *)
v = Table[(2^(u[[k]] + 1) - 1)/(2 u[[k]] + 1), {k, 1, 6}] (* A246649 *)
Select[Table[(2^(n+1)-1)/(2n+1), {n, 0, 250}], IntegerQ] (* Harvey P. Dale, Feb 05 2019 *)
CROSSREFS
Sequence in context: A257305 A128398 A257377 * A210709 A187567 A160145
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Sep 01 2014
STATUS
approved