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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A100701 (T(n-1) + T(n-2)) + T(n-1)*T(n-2) where T(0)=2,T(1)=3 and n>= 2. 0
2, 3, 11, 47, 575, 27647, 15925247, 440301256703, 7011906707722862591, 3087351335301583621409910816767, 21648219537098310851336266290644502090473753542655 (list; graph; refs; listen; history; internal format)
OFFSET

0,1

FORMULA

a(n) = (a(n-1) + a(n-2)) + a(n-1)*a(n-2) with a(0)=2 and a(1)=3

EXAMPLE

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

MATHEMATICA

a=2; b=3; lst={a, b}; Do[c=a*b+a+b; AppendTo[lst, c]; a=b; b=c, {n, 2*3!}]; lst [From Vladimir Orlovsky (4vladimir(AT)gmail.com), Sep 05 2009]

CROSSREFS

Cf. A063896.

Sequence in context: A162101 A128455 A041345 * A011365 A072876 A184315

Adjacent sequences:  A100698 A100699 A100700 * A100702 A100703 A100704

KEYWORD

nonn

AUTHOR

Parthasarathy Nambi (PachaNambi(AT)yahoo.com), Dec 09 2004

EXTENSIONS

More terms and Mathematica program Vladimir Orlovsky (4vladimir(AT)gmail.com), Sep 05 2009

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 16 18:43 EST 2012. Contains 205939 sequences.