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!)
A173099 a(1)=1, a(2)=3, a(n)=2*a(n-2)*a(n-1)-a(n-2)-a(n-1). 1
1, 3, 2, 7, 19, 240, 8861, 4244179, 75211087198, 638418558490509507, 96032307742263928939148386067, 122617614954666266094919182714589930973500782364 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MATHEMATICA
a=1; b=3; lst={a, b}; Do[c=2*a*b-a-b; AppendTo[lst, c]; a=b; b=c, {n, 12}]; lst
nxt[{a_, b_}]:={b, 2*a*b-a-b}; NestList[nxt, {1, 3}, 12][[All, 1]] (* Harvey P. Dale, Jan 03 2022 *)
CROSSREFS
Sequence in context: A177115 A316087 A196537 * A111928 A348695 A248054
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 April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)