Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #10 Dec 25 2018 12:51:06
%S 1,1,1,9,44,270,1938,15764,143776,1453302,16128420,194980478,
%T 2550746400,35904118874,541097840528,8693290587030,148324680742912,
%U 2678504175897990,51039398650102776,1023458322628129882
%N Tribonacci equivalent of mousetrap sequence (A002467).
%C The mousetrap sequence (A002467) can be defined in a Fibonacci-like way as: a(0) = a(1) = 1; for n>1 a(n) = n*(a(n-1)+a(n-2)). The current sequence is thus the tribonacci equivalent of that.
%H Harvey P. Dale, <a href="/A104470/b104470.txt">Table of n, a(n) for n = 0..449</a>
%F a(0) = a(1) = a(2) = 1; for n>2 a(n) = n*(a(n-1)+a(n-2)+a(n-3)).
%t RecurrenceTable[{a[0]==a[1]==a[2]==1,a[n]==n(a[n-1]+a[n-2]+a[n-3])},a,{n,20}] (* _Harvey P. Dale_, Dec 25 2018 *)
%Y Cf. A002467.
%K easy,nonn
%O 0,4
%A _Jonathan Vos Post_, Mar 09 2005