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.

A003261 Woodall (or Riesel) numbers: n*2^n - 1.

Original entry on oeis.org

1, 7, 23, 63, 159, 383, 895, 2047, 4607, 10239, 22527, 49151, 106495, 229375, 491519, 1048575, 2228223, 4718591, 9961471, 20971519, 44040191, 92274687, 192937983, 402653183, 838860799, 1744830463, 3623878655, 7516192767, 15569256447, 32212254719, 66571993087
Offset: 1

Views

Author

Keywords

Comments

For n>1, a(n) is base at which zero is reached for the function "write f(j) in base j, read as base j+1 and then subtract 1 to give f(j+1)" starting from f(n) = n^2 - 1. - Henry Bottomley, Aug 06 2000
Sequence corresponds also to the maximum chain length of the classic puzzle whereby, under agreed commercial terms, an asset of unringed golden chain, when judiciously fragmented into as few as n pieces and n-1 opened links (through n-1 cuts), might be used to settle debt sequentially, with a golden link covering for unit cost. Here beside the n-1 opened links, the n fragmented pieces have lengths n, 2*n, 4*n, ..., 2^(n-1)*n. For instance, the chain of original length a(5)=159, if segregated by 4 cuts into 5+1+10+1+20+1+40+1+80, may be used to pay sequentially, i.e., a link-cost at a time, for an equivalent cost up to 159 links, to the same creditor. - Lekraj Beedassy, Feb 06 2003

Examples

			G.f. = x + 7*x^2 + 23*x^3 + 63*x^4 + 159*x^5 + 383*x^6 + 895*x^7 + ... - _Michael Somos_, Nov 04 2018
		

References

  • A. Brousseau, Number Theory Tables. Fibonacci Association, San Jose, CA, 1973, p. 159.
  • K. R. Bhutani and A. B. Levin, "The Problem of Sawing a Chain", Journal of Recreational Mathematics 2002-3 31(1) 32-35.
  • G. Everest, A. van der Poorten, I. Shparlinski and T. Ward, Recurrence Sequences, Amer. Math. Soc., 2003; see esp. p. 255.
  • M. Gardner, Martin Gardner's Sixth Book of Mathematical Diversions from Scientific American, "Gold Links", Problem 4, pp. 50-51; 57-58, University of Chicago Press, 1983.
  • O. O'Shea, Mathematical Brainteasers with Surprising Solutions, Problem 76, pp. 183-185, Prometheus Books, Guilford, Connecticut, 2020.
  • Paulo Ribenboim, The Little Book of Bigger Primes, Springer-Verlag NY 2004. See p. 241.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

a(n) = A036289(n) - 1 = A002064(n) - 2.
Cf. A133653.

Programs

Formula

G.f.: x*(-1-2*x+4*x^2) / ( (x-1)*(-1+2*x)^2 ). - Simon Plouffe in his 1992 dissertation
Binomial transform of A133653 and double binomial transform of [1, 5, -1, 1, -1, 1, ...]. - Gary W. Adamson, Sep 19 2007
a(n) = -(2)^n * A006127(-n) for all n in Z. - Michael Somos, Nov 04 2018
E.g.f.: 1 + exp(x)*(2*exp(x)*x - 1). - Stefano Spezia, Nov 24 2024