cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-10 of 43 results. Next

A063515 Sum of divisors of Woodall (or Riesel) numbers; sigma(A003261(n)); sigma(n*2^n - 1).

Original entry on oeis.org

1, 8, 24, 104, 216, 384, 1080, 2160, 4896, 13656, 32552, 51312, 137160, 287408, 573600, 1999872, 3034368, 4778400, 11098080, 20984560, 49533120, 137218560, 294000768, 417361152, 958698064, 1755253280, 4362821232, 10552800000
Offset: 1

Views

Author

Jason Earls, Jul 31 2001

Keywords

Crossrefs

Programs

  • PARI
    j=[]; for(n=1,50,x=sigma(n*2^n-1); j=concat(j,x)); j
    
  • PARI
    { for (n=1, 200, write("b063515.txt", n, " ", sigma(n*2^n - 1)) ) } \\ Harry J. Smith, Aug 24 2009

Formula

a(n) = sigma(n*2^n-1).

A133653 A007318^(-1) * A003261.

Original entry on oeis.org

1, 6, 10, 14, 18, 22, 26, 30, 34, 38, 42, 46, 50, 54, 58, 62, 66, 70, 74, 78, 82, 86, 90, 94, 98, 102, 106, 110, 114, 118, 122, 126, 130, 134, 138, 142, 146, 150, 154
Offset: 1

Views

Author

Gary W. Adamson, Sep 19 2007

Keywords

Comments

It appears this sequence gives the positive integers m such that the sum of the first m Fibonacci numbers divides their product. For example, if n=2 and m=a(2)=6, we have the sum 1+1+2+3+5+8=20 which clearly divides the corresponding product 480. See A175553 for the analogous sequence when using the triangular numbers. Sum_{k=1..n} Fibonacci(k) divides Product_{k=1..n} Fibonacci(k). - John W. Layman, Jul 10 2010

Examples

			a(4) = 14 = (1, 3, 3, 1) dot (1, 5, -1, 1) = (1, 15, -3, 1).
		

Crossrefs

Essentially the same as A130824, A113127, A111284, A073760, A016825.

Formula

Inverse binomial transform of A003261: (1, 7, 23, 63, 159, 383, ...).
Binomial transform of [1, 5, -1, 1, -1, 1, ...].
"1" followed by 2 * [3, 5, 7, 9, 11, ...].
O.g.f.: x*(1+4x-x^2)/(1-x)^2. a(n) = 4n-2, n > 1. - R. J. Mathar, Jun 08 2008
1/(1+1/(6+1/(10+1/(14+1/(...(continued fraction)))))) = (e-1)/2 with e = 2.718281...- Philippe Deléham, Mar 09 2013

Extensions

More terms from R. J. Mathar, Jun 08 2008

A056821 Totient of the Woodall numbers (A003261), n*2^n -1.

Original entry on oeis.org

1, 6, 22, 36, 104, 382, 712, 1936, 4320, 6824, 15012, 46992, 79344, 183000, 421008, 480000, 1453784, 4658784, 8877792, 20958480, 38887680, 61284600, 110250264, 388201176, 719023536, 1734432480, 2889658368, 4745378304, 10350643968, 32212254718, 66251144568
Offset: 1

Views

Author

Robert G. Wilson v, Aug 31 2000

Keywords

Crossrefs

Programs

  • Magma
    [EulerPhi(n*2^n-1): n in [1..30]]; // Vincenzo Librandi, Apr 15 2019
    
  • Maple
    a:= n-> numtheory[phi](n*2^n-1):
    seq(a(n), n=1..35);  # Alois P. Heinz, Apr 15 2019
  • Mathematica
    Table[EulerPhi[n 2^n - 1], {n, 1, 35}]
  • PARI
    a(n) = eulerphi(n*2^n -1); \\ Michel Marcus, Apr 15 2019

Formula

a(n) = A000010(A003261(n)).

A287145 Smallest k such that both of the consecutive Woodall numbers A003261(k) and A003261(k+1) are divisible by A014662(n), the n-th prime p with even order of 2 mod p.

Original entry on oeis.org

4, 13, 64, 89, 83, 188, 433, 701, 449, 342, 1429, 1768, 1889, 2276, 3484, 2423, 5149, 5776, 2069, 1693, 8644, 4793, 9728, 11173, 4237, 13364, 15049, 16108, 16469, 9455, 19501, 22364, 25876, 8929, 3131, 6524, 2311, 36313, 13017, 10114, 13582, 43069, 15962
Offset: 1

Views

Author

Amiram Eldar, May 20 2017

Keywords

Comments

Keller proved that the occurrence of 2 consecutive Woodall numbers that are divisible by the same prime is restricted to primes p with even h(p), the order of 2 mod p, and that there are an infinity of such pairs.

Examples

			11 is the 3rd prime p with even order of 2 mod p. A003261(k)=k*2^k-1 is divisible by 11 for k = 16,48,61,64,65,73,79,100,... The first occurrence of 2 consecutive numbers is 64 and 65, thus a(3) = 64.
		

Crossrefs

Programs

  • Mathematica
    a = {}; For[p=0, p<=11699, p++; If[!PrimeQ[p], Continue[]]; h=MultiplicativeOrder[2, p]; If[!EvenQ[h], Continue[]]; n=(h/2+1)*p-2; a = AppendTo[a, n]]; a

Formula

a(n) = (h(p)/2 + 1)*p - 2, where p=A014662(n), and h(p) is the order of 2 modulo p (A014664).

A036289 a(n) = n*2^n.

Original entry on oeis.org

0, 2, 8, 24, 64, 160, 384, 896, 2048, 4608, 10240, 22528, 49152, 106496, 229376, 491520, 1048576, 2228224, 4718592, 9961472, 20971520, 44040192, 92274688, 192937984, 402653184, 838860800, 1744830464, 3623878656, 7516192768, 15569256448, 32212254720
Offset: 0

Views

Author

N. J. A. Sloane, Dec 11 1999

Keywords

Comments

Right side of the binomial sum Sum_{i = 0..n} (n-2*i)^2 * binomial(n, i) = n*2^n. - Yong Kong (ykong(AT)curagen.com), Dec 28 2000
Let W be a binary relation on the power set P(A) of a set A having n = |A| elements such that for all elements x, y of P(A), xRy if x is a proper subset of y and there are no z in P(A) such that x is a proper subset of z and z is a proper subset of y, or y is a proper subset of x and there are no z in P(A) such that y is a proper subset of z and z is a proper subset of x. Then a(n) = |W|. - Ross La Haye, Sep 26 2007
Partial sums give A036799. - Vladimir Joseph Stephan Orlovsky, Jul 09 2011
a(n) = n with the bits shifted to the left by n places (new bits on the right hand side are zeros). - Indranil Ghosh, Jan 05 2017
Satisfies Benford's law [Theodore P. Hill, Personal communication, Feb 06, 2017]. - N. J. A. Sloane, Feb 08 2017
Also the circumference of the n-cube connected cycle graph. - Eric W. Weisstein, Sep 03 2017
a(n) is also the number of derangements in S_{n+3} with a descent set of {i, i+1} such that i ranges from 1 to n-2. - Isabella Huang, Mar 17 2018
a(n-1) is also the number of multiplications required to compute the permanent of general n X n matrices using Glynn's formula (see Theorem 2.1 in Glynn). - Stefano Spezia, Oct 27 2021

References

  • Arno Berger and Theodore P. Hill. An Introduction to Benford's Law. Princeton University Press, 2015.
  • A. P. Prudnikov, Yu. A. Brychkov and O.I. Marichev, "Integrals and Series", Volume 1: "Elementary Functions", Chapter 4: "Finite Sums", New York, Gordon and Breach Science Publishers, 1986-1992, Eq. (4.2.2.29)

Crossrefs

Equals 2*A001787. Equals A003261(n) + 1.

Programs

  • Haskell
    a036289 n = n * 2 ^ n
    a036289_list = zipWith (*) [0..] a000079_list
    -- Reinhard Zumkeller, Mar 05 2012
    
  • Maple
    g:=1/(1-2*z): gser:=series(g, z=0, 43): seq(coeff(gser, z, n)*n, n=0..34); # Zerinvary Lajos, Jan 11 2009
  • Mathematica
    Table[n*2^n, {n, 0, 50}] (* Vladimir Joseph Stephan Orlovsky, Mar 18 2010 *)
    LinearRecurrence[{4,-4},{0,2},40] (* Harvey P. Dale, Mar 02 2018 *)
  • PARI
    a(n)=n<Charles R Greathouse IV, Jun 15 2011
    
  • Python
    a=lambda n: n<Indranil Ghosh, Jan 05 2017

Formula

Main diagonal of array (A085454) defined by T(i, 1) = i, T(1, j) = 2j, T(i, j) = T(i-1, j) + T(i-1, j-1). - Benoit Cloitre, Aug 05 2003
Binomial transform of A005843, the even numbers. - Joshua Zucker, Jan 13 2006
G.f.: 2*x/(1-2*x)^2. - R. J. Mathar, Nov 21 2007
a(n) = A000079(n)*n. - Omar E. Pol, Dec 21 2008
E.g.f.: 2*x exp(2*x). - Geoffrey Critzer, Oct 03 2011
a(n) = A002064(n) - 1. - Reinhard Zumkeller, Mar 16 2013
From Vaclav Kotesovec, Feb 14 2015: (Start)
Sum_{n>=1} 1/a(n) = log(2).
Sum_{n>=1} (-1)^(n+1)/a(n) = log(3/2).
(End)

A002064 Cullen numbers: a(n) = n*2^n + 1.

Original entry on oeis.org

1, 3, 9, 25, 65, 161, 385, 897, 2049, 4609, 10241, 22529, 49153, 106497, 229377, 491521, 1048577, 2228225, 4718593, 9961473, 20971521, 44040193, 92274689, 192937985, 402653185, 838860801, 1744830465, 3623878657, 7516192769, 15569256449, 32212254721, 66571993089
Offset: 0

Views

Author

Keywords

Comments

Binomial transform is A084859. Inverse binomial transform is A004277. - Paul Barry, Jun 12 2003
Let A be the Hessenberg matrix of order n defined by: A[1,j]=1, A[i,i]:=2,(i>1), A[i,i-1] =-1, and A[i,j]=0 otherwise. Then, for n>=1, a(n-1)= (-1)^(n-1)*coeff(charpoly(A,x),x). - Milan Janjic, Jan 26 2010
Indices of primes are listed in A005849. - M. F. Hasler, Jan 18 2015
Add the list of fractions beginning with 1/2 + 3/4 + 7/8 + ... + (2^n - 1)/2^n and take the sums pairwise from left to right. For 1/2 + 3/4 = 5/4, 5 + 4 = 9 = a(2); for 5/4 + 7/8 = 17/8, 17 + 8 = 25 = a(3); for 17/8 + 15/16 = 49/16, 49 + 16 = 65 = a(4); for 49/16 + 31/32 = 129/32, 129 + 32 = 161 = a(5). For each pairwise sum a/b, a + b = n*2^(n+1). - J. M. Bergot, May 06 2015
Number of divisors of (2^n)^(2^n). - Gus Wiseman, May 03 2021
Named after the Irish Jesuit priest James Cullen (1867-1933), who checked the primality of the terms up to n=100. - Amiram Eldar, Jun 05 2021

Examples

			G.f. = 1 + 3*x + 9*x^2 + 25*x^3 + 65*x^4 + 161*x^5 + 385*x^6 + 897*x^7 + ... - _Michael Somos_, Jul 18 2018
		

References

  • G. Everest, A. van der Poorten, I. Shparlinski and T. Ward, Recurrence Sequences, Amer. Math. Soc., 2003; see esp. p. 255.
  • R. K. Guy, Unsolved Problems in Number Theory, B20.
  • Paulo Ribenboim, The Little Book of Bigger Primes, Springer-Verlag NY 2004. See pp. 240-242.
  • W. Sierpiński, Elementary Theory of Numbers. Państ. Wydaw. Nauk., Warsaw, 1964, p. 346.
  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Diagonal k = n + 1 of A046688.
A000005 counts divisors of n.
A000312 = n^n.
A002109 gives hyperfactorials (sigma: A260146, omega: A303281).
A057156 = (2^n)^(2^n).
A062319 counts divisors of n^n.
A173339 lists positions of squares in A062319.
A188385 gives the highest prime exponent in n^n.
A249784 counts divisors of n^n^n.

Programs

Formula

a(n) = 4a(n-1) - 4a(n-2) + 1. - Paul Barry, Jun 12 2003
a(n) = sum of row (n+1) of triangle A130197. Example: a(3) = 25 = (12 + 8 + 4 + 1), row 4 of A130197. - Gary W. Adamson, May 16 2007
Row sums of triangle A134081. - Gary W. Adamson, Oct 07 2007
Equals row sums of triangle A143038. - Gary W. Adamson, Jul 18 2008
Equals row sums of triangle A156708. - Gary W. Adamson, Feb 13 2009
G.f.: -(1-2*x+2*x^2)/((-1+x)*(2*x-1)^2). a(n) = A001787(n+1)+1-A000079(n). - R. J. Mathar, Nov 16 2007
a(n) = 1 + 2^(n + log_2(n)) ~ 1 + A000079(n+A004257(n)). a(n) ~ A000051(n+A004257(n)). - Jonathan Vos Post, Jul 20 2008
a(0)=1, a(1)=3, a(2)=9, a(n) = 5*a(n-1)-8*a(n-2)+4*a(n-3). - Harvey P. Dale, Oct 13 2011
a(n) = A036289(n) + 1 = A003261(n) + 2. - Reinhard Zumkeller, Mar 16 2013
E.g.f.: 2*x*exp(2*x) + exp(x). - Robert Israel, Dec 12 2014
a(n) = 2^n * A000325(n) = 4^n * A186947(-n) for all n in Z. - Michael Somos, Jul 18 2018
a(n) = Sum_{i=0..n-1} a(i) + A000325(n+1). - Ivan N. Ianakiev, Aug 07 2019
a(n) = sigma((2^n)^(2^n)) = A000005(A057156(n)) = A062319(2^n). - Gus Wiseman, May 03 2021
Sum_{n>=0} 1/a(n) = A340841. - Amiram Eldar, Jun 05 2021

Extensions

Edited by M. F. Hasler, Oct 31 2012

A076336 (Provable) Sierpiński numbers: odd numbers n such that for all k >= 1 the numbers n*2^k + 1 are composite.

Original entry on oeis.org

78557, 271129, 271577, 322523, 327739, 482719, 575041, 603713, 903983, 934909, 965431, 1259779, 1290677, 1518781, 1624097, 1639459, 1777613, 2131043, 2131099, 2191531, 2510177, 2541601, 2576089, 2931767, 2931991, 3083723, 3098059, 3555593, 3608251
Offset: 1

Views

Author

N. J. A. Sloane, Nov 07 2002

Keywords

Comments

"Provable" in the definition means provable by any method (whether using a covering set or not). - N. J. A. Sloane, Aug 03 2024
It is only a conjecture that this sequence is complete up to 3000000 - there may be missing terms.
It is conjectured that 78557 is the smallest Sierpiński number. - T. D. Noe, Oct 31 2003
Sierpiński numbers may be proved by exhibiting a periodic sequence p of prime divisors with p(k) | n*2^k+1 and disproved by finding a prime n*2^k+1. It is conjectured by some people that numbers that cannot be proved to be Sierpiński by this method are non-Sierpiński. However, some numbers resist both proof and disproof. - David W. Wilson, Jan 17 2005 [Edited by N. J. A. Sloane, Aug 03 2024]
Sierpiński showed that this sequence is infinite.
There are four related sequences that arise in this context:
S1: Numbers n such that n*2^k + 1 is composite for all k (this sequence)
S2: Odd numbers n such that 2^k + n is composite for all k (apparently it is conjectured that S1 and S2 are the same sequence)
S3: Numbers n such that n*2^k + 1 is prime for all k (empty)
S4: Numbers n such that 2^k + n is prime for all k (empty)
The following argument, due to Michael Reid, attempts to show that S3 and S4 are empty: If p is a prime divisor of n + 1, then for k = p - 1, the term (either n*2^k + 1 or 2^k + n) is a multiple of p (and also > p, so not prime). [However, David McAfferty points that for the case S3, this argument fails if p is of the form 2^m-1. So it may only be a conjecture that the set S3 is empty. - N. J. A. Sloane, Jun 27 2021]
a(1) = 78557 is also the smallest odd n for which either n^p*2^k + 1 or n^p + 2^k is composite for every k > 0 and every prime p greater than 3. - Arkadiusz Wesolowski, Oct 12 2015
n = 4008735125781478102999926000625 = (A213353(1))^4 is in this sequence but is thought not to satisfy the conjecture mentioned by David W. Wilson above. For this multiplier, all n*2^(4m + 2) + 1 are composite by an Aurifeuillean factorization. Only the remaining cases, n*2^k + 1 where k is not 2 modulo 4, are covered by a finite set of primes (namely {3, 17, 97, 241, 257, 673}). See Izotov link for details (although with another prime set). - Jeppe Stig Nielsen, Apr 14 2018
Conjecture: if S is a (provable) Sierpiński number, then there exists a prime P such that S^p is also a Sierpiński number for every prime p > P. - Thomas Ordowski, Jul 12 2022
Problem: are there odd numbers K such that K - 2^m is a Sierpiński number for every 1 < 2^m < K? If so, then all positive values of (K - 2^m)*2^n + 1 are composite. Also, by the dual Sierpiński conjecture, K - 2^m + 2^n is composite for every 1 < 2^m < K and for every n > 0. Note that, by the dual Sierpiński conjecture, if p is an odd prime and 1 < 2^m < p, then there exists n such that (p - 2^m)*2^n + 1 is prime. So if such a number K exists, it must be composite. - Thomas Ordowski, Jul 20 2022
From M. F. Hasler, Jul 23 2022: (Start)
1) The above Conjecture is true for Sierpiński numbers provable by a "covering set", with P equal to the largest prime factor of the elements of that set*, according to the explanation from Michael Filaseta posted Jul 12 2022 on the SeqFan mailing list, cf. links. (*More generally: for S^p with any p coprime to all elements of the covering set, but not necessarily prime.)
2) Wilson's comment from 2005 (also the first part, not only the conjecture) is misleading if not wrong because there are provable Sierpiński numbers for which a covering set is not known (maybe even believed not to exist), as explained by Nielsen in his above comment from 2018. (End)

References

  • R. K. Guy, Unsolved Problems in Number Theory, Section B21.
  • C. A. Pickover, The Math Book, Sterling, NY, 2009; see p. 420.
  • Paulo Ribenboim, The Book of Prime Number Records, 2nd. ed., 1989, p. 282.
  • Paulo Ribenboim, The Little Book of Bigger Primes, Springer-Verlag NY 2004. See pp. 237-238.

Crossrefs

A002234 Numbers k such that the Woodall number k*2^k - 1 is prime.

Original entry on oeis.org

2, 3, 6, 30, 75, 81, 115, 123, 249, 362, 384, 462, 512, 751, 822, 5312, 7755, 9531, 12379, 15822, 18885, 22971, 23005, 98726, 143018, 151023, 667071, 1195203, 1268979, 1467763, 2013992, 2367906, 3752948, 17016602
Offset: 1

Views

Author

Keywords

Comments

a(34) = 17016602 is tentative until the range 16838832..17016601 is fully searched. - Eric W. Weisstein, Mar 22 2018

References

  • J.-M. De Koninck, Ces nombres qui nous fascinent, Entry 115, p. 40, Ellipses, Paris 2008.
  • R. K. Guy, Unsolved Problems in Number Theory, Springer, 1st edition, 1981. See section B20.
  • F. Le Lionnais, Les Nombres Remarquables, Paris, Hermann, 1983, p. 95, 1983.
  • Paulo Ribenboim, The Little Book of Bigger Primes, Springer-Verlag NY 2004. See pp. 241-242.
  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
  • David Wells, The Penguin Dictionary of Curious and Interesting Numbers. Penguin Books, NY, 1986, Revised edition 1987. See p. 139.

Crossrefs

Cf. A050918 (for the actual primes), A003261, A005849.

Programs

  • PARI
    is(n)=isprime(n<Charles R Greathouse IV, Feb 07 2017

Extensions

a(27) communicated by Mohammed Bouayoun (bouyao(AT)wanadoo.fr), Mar 15 2004
a(28) = 1195203 found by M. Rodenkirch; contributed by Eric W. Weisstein, Nov 29 2005
More terms from Herman Jamke (hermanjamke(AT)fastmail.fm), Jan 05 2008
a(30)-a(33) from John Blazek, May 14 2009
a(34) = 17016602 communicated by Eric W. Weisstein, Mar 22 2018

A076337 Riesel numbers: odd numbers n such that for all k >= 1 the numbers n*2^k - 1 are composite.

Original entry on oeis.org

509203
Offset: 1

Views

Author

N. J. A. Sloane, Nov 07 2002

Keywords

Comments

509203 has been proved to be a member of the sequence, and is conjectured to be the smallest member. However, as of 2009, there are still several smaller numbers which are candidates and have not yet been ruled out (see links).
Riesel numbers are proved by exhibiting a periodic sequence p of prime divisors with p(k) | n*2^k-1 and disproved by finding prime n*2^k-1. It is conjectured that numbers that cannot be proved Riesel in this way are non-Riesel. However, some numbers resist both proof and disproof.
Others conjecture the opposite: that there are infinitely many Riesel numbers that do not arise from a covering system, see A101036. The word "odd" is needed in the definition because otherwise for any term n, all numbers n*2^m, m >= 1, would also be Riesel numbers, but we don't want them in this sequence (as is manifest from A101036). Since 1 and 3 obviously are not in this sequence, for any n in this sequence n-1 is an even number > 2 and therefore composite, so one could replace "k >= 1" equivalently by "k >= 0". - M. F. Hasler, Aug 20 2020
Named after the Swedish mathematician Hans Ivar Riesel (1929-2014). - Amiram Eldar, Apr 02 2022

References

  • R. K. Guy, Unsolved Problems in Number Theory, Section B21.
  • Paulo Ribenboim, The Book of Prime Number Records, 2nd ed., 1989, p. 282.

Crossrefs

Main sequences for Riesel problem: A040081, A046069, A050412, A052333, A076337, A101036, A108129.

Extensions

Normally we require at least four terms but we will make an exception for this sequence in view of its importance. - N. J. A. Sloane, Nov 07 2002. See A101036 for the most likely extension.
Edited by N. J. A. Sloane, Nov 13 2009
Definition corrected ("odd" added) by M. F. Hasler, Aug 23 2020

A076335 Brier numbers: numbers that are both Riesel and Sierpiński [Sierpinski], or odd n such that for all k >= 1 the numbers n*2^k + 1 and n*2^k - 1 are composite.

Original entry on oeis.org

3316923598096294713661, 10439679896374780276373, 11615103277955704975673, 12607110588854501953787, 17855036657007596110949, 21444598169181578466233, 28960674973436106391349, 32099522445515872473461, 32904995562220857573541
Offset: 1

Views

Author

Olivier Gérard, Nov 07 2002

Keywords

Comments

a(1), a(4), and a(6)-a(8) computed by Christophe Clavier, Dec 31 2013 (see link below). 10439679896374780276373 had been found earlier in 2013 by Dan Ismailescu and Peter Seho Park (see reference below). a(3), a(5), and a(9) computed in 2014 by Emmanuel Vantieghem.
These are just the smallest examples known - there may be smaller ones.
There are no Brier numbers below 10^9. - Arkadiusz Wesolowski, Aug 03 2009
Other Brier numbers are 143665583045350793098657, 1547374756499590486317191, 3127894363368981760543181, 3780564951798029783879299, but these may not be the /next/ Brier numbers after those shown. From 2002 to 2013 these four numbers were given here as the smallest known Brier numbers, so the new entry A234594 has been created to preserve that fact. - N. J. A. Sloane, Jan 03 2014
143665583045350793098657 computed in 2007 by Michael Filaseta, Carrie Finch, and Mark Kozek.
It is a conjecture that every such number has more than 10 digits. In 2011 I have calculated that for any n < 10^10 there is a k such that either n*2^k + 1 or n*2^k - 1 has all its prime factors greater than 1321. - Arkadiusz Wesolowski, Feb 03 2016 [Editor's note: The comment below states that the conjecture is now proved. - M. F. Hasler, Oct 06 2021]
There are no Brier numbers below 10^10. For each n < 10^10, there exists at least one prime of the form n*2^k-1 or n*2^k+1 with k <= 356981. The largest necessary prime is 1355477231*2^356981+1. - Kellen Shenton, Oct 25 2020

Crossrefs

Extensions

Many terms reported in Problem 29 from "The Prime Problems & Puzzles Connection" from Carlos Rivera, May 30 2010
Entry revised by Arkadiusz Wesolowski, May 17 2012
Entry revised by Carlos Rivera and N. J. A. Sloane, Jan 03 2014
Entry revised by Arkadiusz Wesolowski, Feb 15 2014
Showing 1-10 of 43 results. Next