A081524 a(n) = A081523(n)/n.
1, 2, 4, 4, 4, 9, 5, 8, 8, 13, 7
Offset: 1
Extensions
a(8)-a(11) from Jinyuan Wang, May 23 2020
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
Triangle begins: 1; 1, 3; 1, 4, 7; 1, 3, 5, 7; 1, 2, 3, 6, 8; 1, 5, 7, 11, 13, 17; 1, 2, 3, 4, 5, 8, 12; ...
row(n) = {my(m=n*(n-1)/2, v); forstep(k=m+n/(2-n%2), oo, n, v=List([]); for(i=2, k-m, if(gcd(n, i)==1, listput(v, i))); if(#v>n-2, forsubset([#v, n-1], w, if(r=1+sum(i=1, n-1, v[w[i]])==k, return(concat(1, vector(n-1, i, v[w[i]]))))))); } \\ Jinyuan Wang, May 24 2020
Comments