Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #15 Sep 08 2022 08:44:38
%S 17,24137569,34271896307633,48661191875666868481,
%T 69091933913008732880827217,98100666009922840441972689847969,
%U 139288917338851014461418017489467720433,197770344305988984840145602058543169130838081,280805607755268602048174614102036928492604365174417
%N a(n) = 17^(5*n + 1).
%H Vincenzo Librandi, <a href="/A013882/b013882.txt">Table of n, a(n) for n = 0..100</a>
%H Tanya Khovanova, <a href="http://www.tanyakhovanova.com/RecursiveSequences/RecursiveSequences.html">Recursive Sequences</a>
%H <a href="/index/Rec#order_01">Index entries for linear recurrences with constant coefficients</a>, signature (1419857).
%F a(n) = 1419857*a(n-1). - _Harvey P. Dale_, Sep 24 2016
%t 17^(5*Range[0,20]+1) (* or *) NestList[1419857#&,17,20] (* _Harvey P. Dale_, Sep 24 2016 *)
%o (Magma) [17^(5*n+1): n in [0..10]]; // _Vincenzo Librandi_, Jul 10 2011
%K nonn,easy
%O 0,1
%A _N. J. A. Sloane_