The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A211415 Number of ordered triples (w,x,y) with all terms in {-n,...,0,...,n} and w^2 + x*y = 1. 3

%I #23 Sep 08 2022 08:46:02

%S 0,12,20,36,52,68,84,100,132,148,164,180,212,228,244,276,308,324,340,

%T 356,388,420,436,452,516,532,548,564,596,612,644,660,692,724,740,772,

%U 804,820,836,868,932,948,980,996,1028,1060,1076,1092,1156,1172

%N Number of ordered triples (w,x,y) with all terms in {-n,...,0,...,n} and w^2 + x*y = 1.

%C For n>0, a(n)+2 is the number of self-inverse 2 X 2 matrices with all terms in {-n,...,0,...,n} (see A211416).

%C For a guide to related sequences, see A211422.

%H Chai Wah Wu, <a href="/A211415/b211415.txt">Table of n, a(n) for n = 0..10000</a>

%F For n>0, a(n+1) - a(n) = 8*A060594(n+1). - _Pontus von Brömssen_, Jan 22 2020

%t t[n_] := t[n] = Flatten[Table[w^2 + x*y - 1, {w, -n, n}, {x, -n, n}, {y, -n, n}]]

%t c[n_] := Count[t[n], 0]

%t t = Table[c[n], {n, 0, 20}] (* A211415 *)

%t t + 2 (* A211416 *)

%t (t + 2)/2 (* integers *)

%t t/4 (* integers *)

%t (t/4 - 1)/4 (* integers for n>1 *)

%o (Magma) a:=[]; for n in [0..50] do Append(~a,#[<w,x,y>:w,x,y in [-n..n]|w^2 + x*y eq 1]); end for; a; // _Marius A. Burtea_, Jan 22 2020

%Y Cf. A060594, A211416, A211422.

%K nonn

%O 0,2

%A _Clark Kimberling_, Apr 09 2012

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 June 9 01:05 EDT 2024. Contains 373227 sequences. (Running on oeis4.)