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!)
A173096 a(1) = 3, a(2) = 4, a(n) = a(n-2)*a(n-1)-a(n-2)-a(n-1). 5
3, 4, 5, 11, 39, 379, 14363, 5428835, 77968913907, 423280290755965603, 33002704548058529678235461411, 13969394376835442790478317113350745782558418819, 461027795334010317786933009714496751421279215574147082960119439306256813379 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
a=3; b=4; lst={a, b}; Do[c=a*b-a-b; AppendTo[lst, c]; a=b; b=c, {n, 12}]; lst
nxt[{a_, b_}]:={b, a*b-a-b}; NestList[nxt, {3, 4}, 15][[;; , 1]] (* Harvey P. Dale, Aug 31 2023 *)
CROSSREFS
Sequence in context: A074221 A341785 A052276 * A302752 A046964 A296966
KEYWORD
nonn
AUTHOR
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 March 28 09:04 EDT 2024. Contains 371240 sequences. (Running on oeis4.)