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.

A003461 Bode numbers multiplied by 10: 4 + 3*floor(2^(n-1)).

Original entry on oeis.org

4, 7, 10, 16, 28, 52, 100, 196, 388, 772, 1540, 3076, 6148, 12292, 24580, 49156, 98308, 196612, 393220, 786436, 1572868, 3145732, 6291460, 12582916, 25165828, 50331652, 100663300, 201326596, 402653188, 805306372, 1610612740, 3221225476
Offset: 0

Views

Author

N. J. A. Sloane, based on correspondence from W. I. McLaughlin, 1974

Keywords

Comments

Bode's law is that the average distance of the n-th planet from the sun is (4 + 3*floor(2^(n-1)))/10 astronomical units.

References

  • J. R. Newman, The World of Mathematics, Vol. I, p. 221, 1956.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
  • James J. Tattersall, Elementary Number Theory in Nine Chapters, Cambridge University Press, 1999, pages 23-25.

Crossrefs

Cf. A061654.
First differences of A087009.

Programs

  • Maple
    A003461:=-(-4+5*z+3*z**2)/((2*z-1)*(z-1)); [Conjectured (correctly) by Simon Plouffe in his 1992 dissertation]
  • Mathematica
    Table[4 + 3 Floor[2^(n - 1)], {n, 0, 31}] (* Robert G. Wilson v, Mar 19 2008 *)
    Join[{4},NestList[2#-4&,7,30]] (* Harvey P. Dale, Sep 03 2013 *)
  • PARI
    a(n)=4+3*floor(2^(n-1));

Formula

a(n) = 2*a(n-1) - 4, n > 1.
E.g.f.: (3*exp(2*x) + 8*exp(x) - 3)/2. - Stefano Spezia, Jul 04 2025

Extensions

Description corrected by Michael Somos