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.

Showing 1-4 of 4 results.

A380572 Complement of A380509.

Original entry on oeis.org

1, 2, 3, 4, 5, 7, 8, 9, 10, 13, 14, 15, 17, 18, 22, 23, 24, 25, 27, 28, 32, 34, 35, 37, 39, 43, 44, 45, 48, 49, 50, 53, 57, 58, 59, 60, 62, 64, 67, 69, 70, 73, 77, 78, 79, 80, 84, 87, 88, 93, 95, 97, 98, 99, 100, 102, 104, 105, 108, 111, 112, 113, 114, 115, 122
Offset: 1

Views

Author

Davide Rotondo, Jan 27 2025

Keywords

Comments

4*a(n) + 1 or (4*a(n) + 1)/3 is a prime number.
Compare with A380550, numbers not of the form i + 3*j + 4*i*j. See also A006093, numbers not of the form i + j + i*j and A005097, numbers not of the form i + j + 2*i*j. - Peter Bala, Jan 30 2025

Crossrefs

Programs

  • Maple
    S := {}:
    for n from 1 to 150 do
      if isprime(4*n+1) then S := `union`(S, {n}) fi;
      if type((4*n+1)*(1/3), integer) then if isprime((4*n+1)*(1/3)) then S := `union`(S, {n}) fi; fi;
    end do:
    S; # Peter Bala, Jan 30 2025

A380140 Numbers of the form 4*j*k - j - k for j, k >= 2.

Original entry on oeis.org

12, 19, 26, 30, 33, 40, 41, 47, 52, 54, 56, 61, 63, 68, 71, 74, 75, 82, 85, 86, 89, 90, 96, 101, 103, 107, 109, 110, 116, 117, 118, 124, 128, 129, 131, 132, 138, 140, 145, 146, 147, 151, 152, 155, 159, 161, 162, 166, 173, 176, 178, 180, 182, 184, 185, 187, 191, 194, 195, 201
Offset: 1

Views

Author

Hugo Pfoertner, Jan 26 2025

Keywords

Crossrefs

A380549 List of numbers of the form i + 3*j + 4*i*j for i, j >= 1.

Original entry on oeis.org

8, 13, 15, 18, 22, 23, 24, 28, 29, 33, 35, 36, 38, 42, 43, 46, 48, 50, 51, 53, 57, 58, 60, 61, 63, 64, 68, 69, 71, 73, 74, 78, 79, 80, 83, 85, 87, 88, 90, 92, 93, 96, 97, 98, 99, 100, 101, 103, 105, 106, 108, 112, 113, 114, 118, 120, 123, 126, 127, 128, 131, 132, 133, 134, 137, 138, 139, 141, 143, 145, 148, 150
Offset: 1

Views

Author

Peter Bala, Jan 26 2025

Keywords

Comments

This is a companion sequence to A380509. If N != 6 is a positive integer not in this list then 4*N + 3 is either a prime or three times a prime. See A380550.
Compare with A072668, numbers of the form i + j + i*j, and A047845, numbers of the form i + j + 2*i*j.

Crossrefs

Programs

  • Maple
    L := 150:  S := {}:
    for i from 1 to L do
      for j from 1 to L do
        if i + 3*j + 4*i*j <= L then S := `union`(S, {i+3*j+4*i*j}) end if
      end do;
    end do:
    S;

A380644 Numbers that can be expressed as 4*j*k+j+k, j,k >= 1, as well as 4*j*k-j-k, j,k >= 2.

Original entry on oeis.org

26, 41, 47, 56, 61, 68, 71, 74, 86, 89, 96, 101, 107, 110, 116, 128, 131, 140, 146, 151, 152, 155, 159, 161, 166, 173, 176, 182, 185, 191, 194, 201, 206, 208, 209, 215, 221, 224, 236, 239, 242, 250, 251, 257, 261, 263, 266, 271, 272, 278, 281, 290, 293, 296, 299
Offset: 1

Views

Author

Hugo Pfoertner, Jan 29 2025

Keywords

Examples

			a(1) = 26, because 26 = 4*1*5 + 1 + 5 = 4*2*4 - 2 - 4.
a(2) = 41: 41 = 4*1*8 + 1 + 8 = 4*3*4 - 3 - 4.
		

Crossrefs

Showing 1-4 of 4 results.