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

A004638
Cubes written in base 8.
1
1, 10, 33, 100, 175, 330, 527, 1000, 1331, 1750, 2463, 3300, 4225, 5270, 6457, 10000, 11461, 13310, 15313, 17500, 22055, 24630, 27607, 33000, 36411, 42250, 46343, 52700, 57505, 64570, 72137, 100000, 106141, 114610, 123573, 133100, 142735, 153130, 163667
OFFSET
1,2
LINKS
FORMULA
a(n) = A007094(n^3) = A007094(A000578(n)). - Vincenzo Librandi, Oct 15 2015
MATHEMATICA
Table[FromDigits[IntegerDigits[n^3, 8]], {n, 40}] (* Vincenzo Librandi, Oct 15 2015 *)
PROG
(Magma) [Seqint(Intseq(n^3, 8)): n in [1..40]]; // Vincenzo Librandi, Oct 15 2015
(PARI) for(n=1, 40, print1(fromdigits(digits(n^3, 8)), ", ")) \\ G. C. Greubel, Sep 10 2018
CROSSREFS
Sequence in context: A020478 A094170 A373129 * A211033 A020479 A219818
KEYWORD
nonn,base
EXTENSIONS
Changed offset and more terms from Vincenzo Librandi, Oct 15 2015
STATUS
approved