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.

A100701 a(n) = a(n-1) + a(n-2) + a(n-1)*a(n-2) for n>=2; a(0)=2, a(1)=3.

Original entry on oeis.org

2, 3, 11, 47, 575, 27647, 15925247, 440301256703, 7011906707722862591, 3087351335301583621409910816767, 21648219537098310851336266290644502090473753542655
Offset: 0

Views

Author

Parthasarathy Nambi, Dec 09 2004

Keywords

Comments

In general, if b(n) is defined recursively by b(0) = p, b(1) = q, b(n) = b(n-1) + b(n-2) + b(n-1) * b(n-2) for n >= 2 then b(n) = p^Fibonacci(n-1) * q^Fibonacci(n) - 1. - Rahul Goswami, Apr 15 2020

Examples

			a(2) = (2 + 3) + 2*3 = 11.
		

Crossrefs

Cf. A000045 (Fibonacci), A063896.

Programs

Formula

a(n) = a(n-1) + a(n-2) + a(n-1)*a(n-2) with a(0)=2 and a(1)=3.
a(n) = 3^Fibonacci(n-1) * 4^Fibonacci(n) - 1. - Rahul Goswami, Apr 15 2020

Extensions

More terms from Vladimir Joseph Stephan Orlovsky, Sep 05 2009