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 A228428 #13 Jul 08 2025 07:48:39 %S A228428 0,1,1,1,2,1,1,1,3,3,1,2,4,1,3,5,4,3,5,1,4,3,2,1,7,5,1,4,4,4,4,5,2,5, %T A228428 4,2,6,1,4,9,6,4,6,6,5,6,5,4,6,5,11,9,6,5,10,4,3,9,5,3,11,7,7,10,5,5, %U A228428 10,5,5,5,4,7,6,6,5,13,7,3,12,5,5,12,6,7,8,6,4,9,7,8,9,10,9,9,8,15,17,9,9,10 %N A228428 Number of ways to write n = x + y (x, y > 0) with p(99, x) + p(100, y) prime, where p(m, k) denotes the m-gonal number (m-2)*k*(k-1)/2 + k. %C A228428 Conjecture: a(n) > 0 for all n > 1. %C A228428 See also A228425 for other similar conjectures. %H A228428 Zhi-Wei Sun, <a href="/A228428/b228428.txt">Table of n, a(n) for n = 1..10000</a> %H A228428 Zhi-Wei Sun, <a href="http://arxiv.org/abs/0905.0635">On universal sums of polygonal numbers</a>, preprint, arXiv:0905.0635 [math.NT], 2009-2015. %e A228428 a(8) = 1 since 8 = 3 + 5 with p(99, 3) + p (100, 5) = 1279 prime. %e A228428 a(38) = 1 since 38 = 6 + 32 with p(99, 6) + p(100, 32) = 50101 prime. %t A228428 p[m_,x_]:=(m-2)x(x-1)/2+x %t A228428 a[n_]:=Sum[If[PrimeQ[p[99,x]+p[100,n-x]],1,0],{x,1,n-1}] %t A228428 Table[a[n],{n,1,100}] %Y A228428 Cf. A000040, A228425. %K A228428 nonn %O A228428 1,5 %A A228428 _Zhi-Wei Sun_, Nov 10 2013