A118284 Conjectured largest number that is not the sum of three generalized (2n+1)-gonal numbers; bisection of A118282.
0, 0, 307, 2027, 18180, 10795, 87740, 75150, 122818, 146970, 585513
Offset: 1
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.
Filtered([1..190],n->n mod 4=0 or n mod 12=2); # Muniru A Asiru, Feb 22 2019
[Round((3*n-1) + (Sqrt(-1))^n*(1+(-1)^n)/2): n in [1..70]]; // G. C. Greubel, Feb 21 2019
select(n->modp(n,4)=0 or modp(n,12)=2,[$1..190]); # Muniru A Asiru, Feb 22 2019
Union[4*Range[50], 2+12*Range[16]]
a(n) = (-2+(-I)^n+I^n+6*n)/2 \\ Colin Barker, Oct 19 2015
Vec(2*x*(1+2*x^2)/((1+x^2)*(1-x)^2) + O(x^70)) \\ Colin Barker, Oct 19 2015
for(n=1, 1e3, if(n%4 == 0 || n%12 == 2, print1(n", "))) \\ Altug Alkan, Oct 19 2015
[(3*n-1) + I^n*(1+(-1)^n)/2 for n in (1..70)] # G. C. Greubel, Feb 21 2019
Comments