A219875 Multiplication table of the operation "n o m" = n*m + ceiling(n/phi)* ceiling(m/phi), with phi = (1+sqrt(5))/2, read by antidiagonals.
2, 4, 4, 5, 8, 5, 7, 10, 10, 7, 9, 14, 13, 14, 9, 10, 18, 18, 18, 18, 10, 12, 20, 23, 25, 23, 20, 12, 13, 24, 26, 32, 32, 26, 24, 13, 15, 26, 31, 36, 41, 36, 31, 26, 15, 17, 30, 34, 43, 46, 46, 43, 34, 30, 17, 18, 34, 39, 47, 55, 52, 55, 47, 39, 34, 18
Offset: 1
Links
- Paolo Xausa, Table of n, a(n) for n = 1..11325 (first 150 antidiagonals, flattened).
- P. Arnoux, Some remarks about Fibonacci multiplication, Applied Mathematics Letters, Volume 2, Issue 4, 1989, Pages 319-320.
Programs
-
Mathematica
A219875[n_, m_] := n*m + Ceiling[n / GoldenRatio] * Ceiling[m / GoldenRatio]; Table[A219875[n-m+1, m], {n, 15}, {m, n}] (* Paolo Xausa, Mar 20 2024 *)
-
PARI
prod(m,n) = {phi = (1+sqrt(5))/2; return (m*n + ceil(m/phi)*ceil(n/phi));}
Comments