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”).
%I #8 Jul 30 2015 15:50:33
%S 81,38416,390625,1679616,4879681,11316496,22667121,40960000,68574961,
%T 108243216,163047361,236421376,332150625,454371856,607573201,
%U 796594176,1026625681,1303210000,1632240801,2019963136
%N (11n+3)^4.
%H <a href="/index/Rec#order_05">Index entries for linear recurrences with constant coefficients</a>, signature (5, -10, 10, -5, 1).
%F a(0)=81, a(1)=38416, a(2)=390625, a(3)=1679616, a(4)=4879681, a(n)= 5*a(n-1)- 10*a(n-2)+10*a(n-3)-5*a(n-4)+a(n-5). - _Harvey P. Dale_, Jan 15 2013
%t (11*Range[0,30]+3)^4 (* or *) LinearRecurrence[{5,-10,10,-5,1},{81,38416,390625,1679616,4879681},30] (* _Harvey P. Dale_, Jan 15 2013 *)
%K nonn,easy
%O 0,1
%A _N. J. A. Sloane_.