login

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”).

A083500
Smallest k such that n*(n+k) + 1 is a cube.
3
6, 11, 18, 27, 38, 51, 2, 83, 29, 123, 146, 171, 43, 38, 258, 291, 326, 1, 51, 443, 174, 531, 578, 627, 678, 2, 10, 530, 902, 963, 473, 1091, 1158, 1227, 3, 25, 438, 1523, 66, 1683, 1766, 330, 1042, 2027, 46, 2211, 2306, 2403, 70, 2603, 2706, 417, 2918, 73
OFFSET
1,1
COMMENTS
For all n, n*(n+k) + 1 is a square for k = 2.
Differs from A102305 at positions listed by A102306.
EXAMPLE
a(7) = 2 as 7*9 + 1 = 64 = 4^3, though 66 also qualifies but 2<66.
MATHEMATICA
Do[k = 0; While[i = n(n + k) + 1; !IntegerQ[i^(1/3)], k++ ]; Print[k], {n, 1, 55}]
CROSSREFS
Cf. A083501.
Sequence in context: A315564 A315565 A073945 * A102305 A160842 A365351
KEYWORD
nonn
AUTHOR
Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), May 03 2003
EXTENSIONS
Edited and extended by Robert G. Wilson v, May 11 2003
STATUS
approved