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.
%I A075331 #10 Jul 08 2024 08:50:36 %S A075331 4,16,22,28,37,45,56,65,74,84,90,100,106,118,124,132,142,150,155,163, %T A075331 175,182,190,200,208,217,226,234,237,249,259,267,277,285,290,300,313, %U A075331 318,331,337,343,351,361,371,380,389,393,406,412,421,430,439,445,457 %N A075331 Sums of pairs in A075329. %p A075331 A075331 := proc(nmax) local r,s,n,stst,rtst,i ; r := [1] : s := [] : n := {1} : while nops(r) < nmax do stst := 1 ; while stst in n or stst-op(-1,r) in n or stst+op(-1,r) in n do stst := stst +1 ; od ; s := [op(s),stst] ; n := n union {stst, stst-op(-1,r), stst+op(-1,r)} ; rtst := 1 ; while rtst in n do rtst := rtst +1 ; od ; r := [op(r),rtst] ; n := n union {rtst} ; od : for i from 1 to nops(s) do s := subsop(i=op(i,r)+op(i,s),s) ; od ; RETURN(s) ; end: A075331(100) ; # _R. J. Mathar_, Feb 03 2007 %t A075331 A075331[nmax_] := Module[{r = {1}, s = {}, n = {1}, stst, rtst}, While[Length[r] < nmax, stst = 1; While[MemberQ[n, stst] || MemberQ[n, stst - Last[r]] || MemberQ[n, stst + Last[r]], stst++]; s = Append[s, stst]; n = n~Union~{stst, stst - Last[r], stst + Last[r]}; rtst = 1; While[MemberQ[n, rtst], rtst++]; r = Append[r, rtst]; n = n~Union~{rtst}]; Return[Most[r] + s]]; %t A075331 A075331[100] (* _Jean-François Alcover_, Jul 08 2024, after _R. J. Mathar_ *) %Y A075331 Cf. A075329, A075330, A075332. %K A075331 nonn %O A075331 1,1 %A A075331 _Amarnath Murthy_, Sep 18 2002 %E A075331 More terms from _R. J. Mathar_, Feb 03 2007