login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

Powers of fifth root of 17 rounded to nearest integer.
1

%I #25 Jan 02 2025 09:35:09

%S 1,2,3,5,10,17,30,53,93,164,289,509,898,1582,2788,4913,8658,15259,

%T 26892,47392,83521,147192,259403,457157,805666,1419857,2502271,

%U 4409854,7771663,13696315,24137569,42538612,74967512,132118271,232837359,410338673,723156400,1274447701

%N Powers of fifth root of 17 rounded to nearest integer.

%H Robert Israel, <a href="/A018163/b018163.txt">Table of n, a(n) for n = 0..4043</a>

%p f:= n -> round(17^(n/5)):

%p map(f, [$0..40]); # _Robert Israel_, Dec 30 2024

%t IntegerPart[#+1/2]&/@((Power[17, (5)^-1])^Range[0,40]) (* _Harvey P. Dale_, Jun 14 2011 *)

%t Table[Round[17^(n/5)], {n, 0, 40}] (* _T. D. Noe_, Jun 14 2011 *)

%Y Cf. A011102.

%K nonn

%O 0,2

%A _N. J. A. Sloane_