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 Jan 20 2024 13:55:09
%S -3,-5,-5,25,271,1825,10735,59425,318271,1670785,8656975,44454625,
%T 226827871,1151991745,5830280815,29429454625,148249811071,
%U 745630312705,3745590106255,18797445635425,94264432179871,472428649241665
%N a(n) = 5^n-4^n-3^n-2^n-1.
%F G.f.: x*(3-40*x+185*x^2-350*x^3+226*x^4)/((x-1)*(4*x-1)*(3*x-1)*(2*x-1)*(5*x-1)). [Maksym Voznyy (voznyy(AT)mail.ru), Jul 26 2009]
%t lst={};Do[p=5^n-4^n-3^n-2^n-1^n;AppendTo[lst,p],{n,0,5!}];lst
%t Table[5^n-4^n-3^n-2^n-1,{n,0,30}] (* _Harvey P. Dale_, Jul 27 2015 *)
%Y Cf. A147975-A147979.
%K sign,easy
%O 1,1
%A _Vladimir Joseph Stephan Orlovsky_, Nov 18 2008
%E G.f. proposed by Maksym Voznyy checked and corrected by R. J. Mathar, Sep 16 2009.