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

A066021
(a(n)^6+1)/(n^6+1) is the smallest integer > 1.
1
3, 7, 27, 64, 125, 119, 343, 177, 729, 1000, 1331, 1728, 2197, 2744, 3375, 4096, 4913, 5832, 6859, 8000, 9261, 10648, 12167, 13824, 15625, 17576, 19683, 21952, 24389, 27000, 29791, 32768, 35937, 39304, 42875, 46656, 50653, 54872, 59319, 64000
OFFSET
1,1
MATHEMATICA
Do[k = 1; While[m = (k^6 + 1)/(n^6 + 1); m < 2 || !IntegerQ[m], k++ ]; Print[k], {n, 1, 40} ]
CROSSREFS
Sequence in context: A225038 A293564 A056257 * A259595 A148742 A148743
KEYWORD
easy,nonn
AUTHOR
Robert G. Wilson v, Dec 11 2001
STATUS
approved