A022344 Allan Wechsler's "J determinant" sequence.
1, 5, 4, 9, 16, 11, 19, 11, 20, 31, 19, 31, 45, 29, 44, 25, 41, 59, 36, 55, 29, 49, 71, 41, 64, 89, 55, 81, 44, 71, 100, 59, 89, 121, 76, 109, 61, 95, 131, 79, 116, 61, 99, 139, 80, 121, 164, 101, 145, 79, 124, 171, 101, 149, 76, 125, 176, 99, 151, 205
Offset: 0
References
- Allan C. Wechsler, posting to math-fun mailing list Dec 04 1996.
Links
- Michael De Vlieger, Table of n, a(n) for n = 0..10000
- A. F. Horadam, Fibonacci Number Triples, The American Mathematical Monthly, Vol. 68, No. 8 (Oct., 1961), pp. 751-753.
Programs
-
Magma
[Floor((n+1)*((1+Sqrt(5))/2))^2-n*Floor((n+1)*(1+Sqrt(5))/2)-n^2: n in [0..60]]; // Vincenzo Librandi, Jul 01 2016
-
Maple
Digits := 50: t := evalf((1+sqrt(5))/2): f := n->floor( n*t)^2-(n-1)*floor(n*t)-(n-1)^2:
-
Mathematica
Table[#^2 - n # - n^2 &[Floor[(n + 1) GoldenRatio]], {n, 0, 51}] (* Michael De Vlieger, Jun 30 2016 *)
Formula
a(n) = floor((n+1)*tau)^2 - n*floor((n+1)*tau) - n^2.
a(A357097(x,y)) = a(x) * a(y). - Peter Munn, Aug 15 2025
Comments