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.

A157502 Even numbers without the squares.

Original entry on oeis.org

2, 6, 8, 10, 12, 14, 18, 20, 22, 24, 26, 28, 30, 32, 34, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130
Offset: 1

Views

Author

Gerald Hillier, Mar 01 2009

Keywords

Comments

Complement of A128201.

Examples

			a(2) = 6 as the next even after 2, i.e., 4 (a perfect square), drops out and is replaced by following even.
		

Crossrefs

Cf. A000290 (squares), A005843 (even numbers).

Programs

  • Mathematica
    Select[Range[2, 130, 2], ! IntegerQ@ Sqrt[#] &] (* Michael De Vlieger, Oct 01 2021 *)
  • PARI
    isok(n) = ((n % 2) == 0) && ! issquare(n); \\ Michel Marcus, Aug 26 2013
    
  • Python
    from math import isqrt
    def A157502(n): return (k:=n<<1)+(r:=(m:=isqrt(k))+int((k-m*(m+1)<<2)>=1))-(r&1) # Chai Wah Wu, Jul 30 2022

Formula

Set R(n) = round(sqrt(2*n)), then a(n) = 2*n + R(n) - (R(n) mod 2).

Extensions

More terms from Michel Marcus, Aug 26 2013