login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A114552 Odd-indexed bisection of A114551, which is the continued fraction expansion of Sum_{n>=0} 1/A112373(n); also, a(n) = A112373(n+1)/A112373(n) for n>=0. 2
1, 2, 6, 78, 73086, 4999703411742, 1710009514450915230711940280907486, 1000118217480414644596377710149364954622541926875237885435586055466747491 (list; graph; refs; listen; history; internal format)
OFFSET

0,2

COMMENTS

A112373 is defined by the recurrence: let b(n) = A112373(n), then

b(n) =(b(n-1)^3 + b(n-1)^2)/b(n-2) for n>=2 with b(0)=b(1)=1.

The next term is too large to include.

FORMULA

a(n) = a(n-1)*(1 + a(0)*a(1)*a(2)*...*a(n-1)) for n>=1, with a(0)=1.

a(n) = a(n-1)*(1 - a(n-1) + a(n-1)^2/a(n-2)) for n>=2, with a(0)=1, a(1)=2.

EXAMPLE

a(5) = 4999703411742 = 73086*(1 + 1*2*6*78*73086).

a(5) = a(4)*(1 - a(4) + a(4)^2/a(3)) = 73086*(1 - 73086 + 73086^2/78).

PROG

(PARI) a(n)=if(n==0, 1, if(n==1, 2, a(n-1)*(1-a(n-1)+a(n-1)^2/a(n-2))))

CROSSREFS

Cf. A112373, A114550 (constant), A114551 (continued fraction).

Sequence in context: A000721 A136306 A076146 * A055706 A118537 A109892

Adjacent sequences:  A114549 A114550 A114551 * A114553 A114554 A114555

KEYWORD

nonn

AUTHOR

Paul D. Hanna (pauldhanna(AT)juno.com), Dec 08 2005

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 03:33 EST 2012. Contains 205694 sequences.