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

A070498
a(n) = n^3 mod 36.
1
0, 1, 8, 27, 28, 17, 0, 19, 8, 9, 28, 35, 0, 1, 8, 27, 28, 17, 0, 19, 8, 9, 28, 35, 0, 1, 8, 27, 28, 17, 0, 19, 8, 9, 28, 35, 0, 1, 8, 27, 28, 17, 0, 19, 8, 9, 28, 35, 0, 1, 8, 27, 28, 17, 0, 19, 8, 9, 28, 35, 0, 1, 8, 27, 28, 17, 0, 19, 8, 9, 28, 35, 0, 1, 8, 27, 28, 17, 0, 19, 8, 9, 28
OFFSET
0,3
COMMENTS
Equivalently: n^(6*m + 3) mod 36. - G. C. Greubel, Mar 30 2016
FORMULA
From G. C. Greubel, Mar 30 2016: (Start)
a(6*m) = 0.
a(n) = a(n-12).
G.f.: (-x -8*x^2 -28*x^3 -36*x^4 -44*x^5 -28*x^6 -35*x^7)/(-1 -x^2 +x^6 +x^8). (End)
MATHEMATICA
PowerMod[Range[0, 90], 3, 36] (* Harvey P. Dale, Jun 19 2011 *)
PROG
(Sage) [power_mod(n, 3, 36 )for n in range(0, 83)] # Zerinvary Lajos, Oct 30 2009
(Magma) [Modexp(n, 3, 36): n in [0..100]]; // Vincenzo Librandi, Mar 31 2016
(PARI) a(n)=n^3%36 \\ Charles R Greathouse IV, Apr 06 2016
CROSSREFS
Sequence in context: A070499 A077107 A335018 * A364875 A358240 A084698
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, May 12 2002
STATUS
approved