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

A069821
a(n) is the smallest k > n such that (k^3 - 1)/(n^3 - 1) is an integer.
1
4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 211, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 466, 1369, 1444, 1075, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304, 2401, 2500, 2601
OFFSET
2,1
COMMENTS
For almost all n, a(n) = n^2. Exceptions: a(16) = 211, a(36) = 466, a(39) = 1075, a(53) = 1173, a(58) = 919...
LINKS
PROG
(PARI) a(n) = {k=n+1; while((k^3-1)%(n^3-1)>0, k++); k; } \\ Jinyuan Wang, Jul 29 2019
(Magma) sol:=[]; m:=1; for n in [2..50] do for k in [n+1..3000] do if IsIntegral((k^3-1)/(n^3-1)) then sol[m]:=k; m:=m+1; break; end if; end for; end for; sol; // Marius A. Burtea, Jul 30 2019
CROSSREFS
Sequence in context: A162497 A216500 A370785 * A331221 A376170 A174452
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Apr 28 2002
EXTENSIONS
Name clarified by Jon E. Schoenfield, Jul 28 2019
STATUS
approved