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

A334834
Composite numbers k such that the decimal expansion of ((1/2^(k-1))-1)/k is finite.
1
4, 8, 10, 15, 16, 20, 25, 28, 32, 40, 50, 64, 70, 75, 80, 100, 112, 125, 128, 160, 175, 200, 250, 256, 280, 320, 325, 341, 375, 400, 425, 448, 496, 500, 512, 561, 625, 640, 645, 700, 730, 800, 1000, 1016, 1024, 1105, 1120, 1250, 1280, 1288, 1387, 1600, 1729, 1750
OFFSET
1,1
COMMENTS
If (1/2^(n-1))-1 divided by n results in a finite decimal number, n is prime or pseudoprime. Poulet numbers: A001567 are a subsequence:
if n|(2^(n-1)-1) then the denominator of ((1/2^(n-1))-1)/n is a power of 2, so the decimal expansion of the fraction is finite. (1/2^n)-1 is < 0 for n >= 1.
EXAMPLE
10 is a term because ((1/2^9)-1)/10 = -0.0998046875;
12 is not a term because ((1/2^11)-1)/12 = -0.08329264322916666666666... .
MATHEMATICA
A003592Q[n_] := n/2^IntegerExponent[n, 2]/5^IntegerExponent[n, 5] == 1; seqQ[n_] := CompositeQ[n] && A003592Q[Denominator[((1/2^(n - 1)) - 1)/n]]; Select[Range[2000], seqQ] (* Amiram Eldar, May 14 2020 *)
CROSSREFS
Cf. A001567 (Poulet numbers, a subsequence).
Sequence in context: A310997 A310998 A153975 * A020169 A310999 A311000
KEYWORD
nonn,base
AUTHOR
Davide Rotondo, May 13 2020
EXTENSIONS
More terms from Amiram Eldar, May 14 2020
STATUS
approved