login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A039305 Number of distinct quadratic residues mod 8^n. 2
1, 3, 12, 87, 684, 5463, 43692, 349527, 2796204, 22369623, 178956972, 1431655767, 11453246124, 91625968983, 733007751852, 5864062014807, 46912496118444, 375299968947543, 3002399751580332, 24019198012642647, 192153584101141164 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Number of distinct n-digit suffixes of base 8 squares.
LINKS
FORMULA
a(n) = floor((8^n+10)/6).
G.f.: (1-5*x-13*x^2-4*x^3)/((1-x)*(1+x)*(1-8*x)). - Colin Barker, Mar 14 2012
a(n) = 8*a(n-1) + a(n-2) - 8*a(n-3) for n>0, a(0)=1. - Vincenzo Librandi, Apr 22 2012
MATHEMATICA
CoefficientList[Series[(1-5*x-13*x^2-4*x^3)/((1-x)*(1+x)*(1-8*x)), {x, 0, 30}], x] (* Vincenzo Librandi, Apr 22 2012 *)
Join[{1}, LinearRecurrence[{8, 1, -8}, {3, 12, 87}, 30]] (* Harvey P. Dale, Feb 10 2015 *)
PROG
(Magma) I:=[1, 3, 12, 87]; [n le 4 select I[n] else 8*Self(n-1)+Self(n-2)-8*Self(n-3): n in [1..30]]; // Vincenzo Librandi, Apr 22 2012
CROSSREFS
Cf. A001018.
Sequence in context: A074505 A260912 A266788 * A174463 A367143 A361583
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)