[go: up one dir, main page]

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

A046632
Number of cubic residues mod 4^n.
1
1, 3, 10, 37, 147, 586, 2341, 9363, 37450, 149797, 599187, 2396746, 9586981, 38347923, 153391690, 613566757, 2454267027, 9817068106, 39268272421, 157073089683, 628292358730, 2513169434917, 10052677739667, 40210710958666
OFFSET
0,2
FORMULA
G.f.: (-4x^3 - 2x^2 - x+1)/((1-4x)*(1-x^3)).
a(n) = A046530(4^n) = A046630(2n). - R. J. Mathar, Feb 27 2011
a(n) = 4*a(n-1) + a(n-3) - 4*a(n-4). - Vincenzo Librandi, Jun 22 2012
MATHEMATICA
LinearRecurrence[{4, 0, 1, -4}, {1, 3, 10, 37}, 40] (* Vincenzo Librandi, Jun 22 2012 *)
PROG
(Magma) I:=[1, 3, 10, 37]; [n le 4 select I[n] else 4*Self(n-1)+Self(n-3)-4*Self(n-4): n in [1..30]]; // Vincenzo Librandi, Jun 22 2012
CROSSREFS
Sequence in context: A151056 A109081 A366231 * A151057 A063029 A199874
KEYWORD
nonn,easy
STATUS
approved