cp's OEIS Frontend

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.

A154260 Numbers of the form m*(4*m +- 1)/2.

Original entry on oeis.org

0, 7, 9, 30, 34, 69, 75, 124, 132, 195, 205, 282, 294, 385, 399, 504, 520, 639, 657, 790, 810, 957, 979, 1140, 1164, 1339, 1365, 1554, 1582, 1785, 1815, 2032, 2064, 2295, 2329, 2574, 2610, 2869, 2907, 3180, 3220, 3507, 3549, 3850, 3894, 4209, 4255, 4584
Offset: 1

Views

Author

Keywords

Comments

Also integers of the form Sum_{k = 1..j} k/4 = j*(j + 1)/8. - Alonso del Arte, Jan 20 2012
Numbers h such that 32*h + 1 is a square. - Bruno Berselli, Mar 30 2014
The sequence terms are the exponents in the expansion of Product_{n >= 1} (1 - q^(16*n))*(1 - q^(16*n-7))*(1 - q^(16*n-9)) = 1 - q^7 - q^9 + q^30 + q^34 - q^69 - q^75 + + - - .... - Peter Bala, Dec 24 2024

Crossrefs

Cf. similar sequences listed in A219257 and A299645.

Programs

  • Magma
    k:=8; f:=func; [0] cat [f(n*m): m in [-1, 1], n in [1..25]]; // Bruno Berselli, Nov 14 2012
    
  • Mathematica
    Select[Union[Flatten[Table[{n (4n - 1)/2, n (4n + 1)/2}, {n, 0, 199}]]], IntegerQ] (* Alonso del Arte, Jan 20 2012 *)
  • PARI
    print1(0);forstep(n=2,1e2,2,print1(", "n*(4*n-1)/2", "n*(4*n+1)/2)) \\ Charles R Greathouse IV, Jan 20 2012
    
  • PARI
    print1(s=0);for(n=1,1e3,s+=n/4;if(denominator(s)==1,print1(s", "))) \\ Charles R Greathouse IV, Jan 20 2012
    
  • Python
    def A154260(n): return (n>>1)*((n<<2)+(-3 if n&1 else -1)) # Chai Wah Wu, Mar 11 2025

Formula

From R. J. Mathar, Jan 07 2009: (Start)
a(n) = a(n-1) + 2*a(n-2) - 2*a(n-3) - a(n-4) + a(n-5).
G.f.: x^2*(7 + 2x + 7x^2)/((1+x)^2*(1-x)^3). (End)
From G. C. Greubel, Sep 08 2016: (Start)
a(n) = (1/4)*(8*n^2 + 6*(-1)^n*n - 8*n - 3*(-1)^n + 3).
E.g.f.: (1/4)*( (3 + 8*x^2)*exp(x) - 3*(1 + 2*x)*exp(-x) ). (End)
From Amiram Eldar, Mar 17 2022: (Start)
Sum_{n>=2} 1/a(n) = 8 - (sqrt(2)+1)*Pi.
Sum_{n>=2} (-1)^n/a(n) = 2*sqrt(2)*log(sqrt(2)+1) - 8*(1-log(2)). (End)
a(n) = (n-1)*(4*n-3)/2 if n is odd and a(n) = n*(4*n-1)/2 if n is even. - Chai Wah Wu, Mar 11 2025