login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A076950 Smallest k such that nk-1 is a cube. 0

%I #5 Feb 15 2022 19:13:14

%S 1,1,3,7,13,21,4,43,1,73,91,111,5,2,183,211,241,7,27,343,6,421,463,

%T 507,553,189,19,1,757,813,7,931,993,1057,196,37,36,518,126,1483,1561,

%U 3,8,1807,61,1981,2071,2163,140,2353,2451,234,2653,91,2863,532,9,3193,3307,3423

%N Smallest k such that nk-1 is a cube.

%t Do[k = 1; While[ !IntegerQ[(n*k - 1)^(1/3)], k++ ]; Print[k], {n, 1, 59}]

%t skc[n_] :=Module[{k = 1}, While[! IntegerQ[Surd[ n*k - 1, 3]], k++]; k]; Array[skc,60] (* _Harvey P. Dale_, Feb 15 2022 *)

%K nonn

%O 1,3

%A _Amarnath Murthy_, Oct 20 2002

%E Edited and extended by _Robert G. Wilson v_, Oct 21 2002

%E Corrected and extended by _Harvey P. Dale_, Feb 15 2022

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 09:13 EDT 2024. Contains 371967 sequences. (Running on oeis4.)