login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A242412 a(n) = (2n-1)^2 + 14. 3
15, 23, 39, 63, 95, 135, 183, 239, 303, 375, 455, 543, 639, 743, 855, 975, 1103, 1239, 1383, 1535, 1695, 1863, 2039, 2223, 2415, 2615, 2823, 3039, 3263, 3495, 3735, 3983, 4239, 4503, 4775, 5055, 5343, 5639, 5943, 6255, 6575, 6903, 7239, 7583, 7935, 8295, 8663, 9039, 9423, 9815 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The previous definition was "a(n) = normalized inverse radius of the inscribed circle that is tangent to the left circle of the symmetric arbelos and the n-th and (n-1)-st circles in the Pappus chain".
See links section for image of these circles, via Wolfram MathWorld (there an asymmetric arbelos is shown).
The Rothman-Fukagawa article has another picture of the circles, based on a Japanese 1788 sangaku problem. - N. J. A. Sloane, Jan 02 2020
LINKS
Brady Haran and Simon Pampena, Epic Circles, Numberphile video (2014).
Tony Rothman and Hidetoshi Fukagawa, Japanese temple geometry, Scientific American, Vol. 278, No. 5, May 1998, 85-91.
Eric Weisstein's World of Mathematics, Image of inscribed circles (in red)
Eric Weisstein's World of Mathematics, Pappus Chain
Wikipedia, Pappus chain
FORMULA
a(n) = 4*n^2 - 4*n + 15.
a(n) = 3*a(n-1)-3*a(n-2)+a(n-3). G.f.: -x*(15*x^2-22*x+15) / (x-1)^3. - Colin Barker, May 14 2014
From Descartes three circle theorem:
a(n) = 2 +c(n) + c(n-1) + 2*sqrt(2*(c(n) + c(n-1) + c(n)*c(n-1)), with c(n) = A059100(n) = n^2 +2, n >= 1, which produces 4*n^2 - 4*n + 15. - Wolfdieter Lang, Jul 01 2015
EXAMPLE
For n = 1, the radius of the outermost circle divided by the radius of a circle drawn tangent to all three of the initial inner circle, the opposite inner circle (the 0th circle in the chain), and the 1st circle in the chain is 15.
For n = 2, the radius of the outermost circle divided by the radius of a circle drawn tangent to all three of the initial inner circle, the 1st circle in the chain, and the 2nd circle in the chain is 23.
MAPLE
A242412:=n->4*n^2 - 4*n + 15; seq(A242412(n), n=1..50); # Wesley Ivan Hurt, May 13 2014
MATHEMATICA
Table[4 n^2 - 4 n + 15, {n, 50}] (* Wesley Ivan Hurt, May 13 2014 *)
LinearRecurrence[{3, -3, 1}, {15, 23, 39}, 50] (* Harvey P. Dale, Feb 22 2023 *)
PROG
(Magma) [4*n^2 - 4*n + 15: n in [1..50]]; // Wesley Ivan Hurt, May 13 2014
(PARI) a(n) = 4*n^2 - 4*n + 15 \\ Charles R Greathouse IV, May 14 2014
CROSSREFS
Sequence in context: A129387 A341170 A171167 * A364729 A195036 A111151
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from Wesley Ivan Hurt, May 13 2014
More terms and links from Robert G. Wilson v, May 13 2014
Edited: Name reformulated (with consent of the author). - Wolfdieter Lang, Jul 01 2015
Edited by N. J. A. Sloane, Jan 02 2020, simplifying the definition and adding a reference to the fact that this sequence arose in a sangaku problem from 1788 in a temple in Tokyo Prefecture.
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 17 22:02 EDT 2024. Contains 371767 sequences. (Running on oeis4.)