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 #9 Jul 30 2015 15:49:56
%S 27,2744,15625,46656,103823,195112,328509,512000,753571,1061208,
%T 1442897,1906624,2460375,3112136,3869893,4741632,5735339,6859000,
%U 8120601,9528128,11089567,12812904,14706125
%N (11n+3)^3.
%H <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (4, -6, 4, -1).
%F a(0)=27, a(1)=2744, a(2)=15625, a(3)=46656, a(n)=4*a(n-1)-6*a(n-2)+ 4*a(n-3)- a(n-4) [From Harvey P. Dale, Apr 01 2012]
%t (11Range[0,30]+3)^3 (* or *) LinearRecurrence[{4,-6,4,-1},{27,2744,15625,46656},30] (* _Harvey P. Dale_, Apr 01 2012 *)
%K nonn,easy
%O 0,1
%A _N. J. A. Sloane_.