login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A203768
a(n)=f(a(n-1),a(n-2),a(n-3)+1), where f(x,y,z)=yz+zx+xy and (a(1),a(2),a(3))=(0,0,1).
3
0, 0, 1, 1, 3, 11, 61, 959, 70739, 72283977, 5182756776363, 374996904946945687251, 1943544856497336440989864767424605, 728823315884977144637506322934226372105715052561182439
OFFSET
1,5
COMMENTS
For a guide to related sequences, see A203761.
MATHEMATICA
a[1] = 0; a[2] = 0; a[3] = 1;
a[n_] := SymmetricPolynomial[2, {a[n - 1], a[n - 2], 1 + a[n - 3]}]
Table[a[n], {n, 1, 16}] (* A203768 *)
(Rest[Rest[%]] - 1)/2 (* A203769 *)
CROSSREFS
Sequence in context: A203007 A343774 A296321 * A356268 A069725 A291287
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 07 2012
STATUS
approved