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-3 of 3 results.

A356451 Numbers k such that 4*k^2 is in A014567.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 40, 41, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 58, 59, 60, 61, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83
Offset: 1

Views

Author

Jianing Song, Aug 07 2022

Keywords

Comments

Numbers k such that k and sigma(4*k^2) are coprime, sigma = A000203.

Examples

			12 is a term since 12 and sigma(4*12^2) = 1651 are coprime.
		

Crossrefs

Cf. A014567, A000203, A356382, A356448, A356449, A356454 (complement).

Programs

  • PARI
    isA356450(n) = gcd(n,sigma(4*n^2))==1

Formula

a(n) = A356448(n)/2.

A356453 Numbers k such that 2*k^2 is not in A014567; complement of A356449.

Original entry on oeis.org

3, 6, 9, 10, 12, 15, 18, 21, 24, 27, 28, 30, 33, 36, 39, 40, 42, 45, 48, 50, 51, 54, 57, 60, 63, 66, 69, 70, 72, 75, 77, 78, 81, 84, 87, 90, 93, 96, 99, 102, 105, 108, 110, 111, 114, 117, 120, 123, 126, 129, 130, 132, 133, 135, 136, 138, 140, 141, 144, 147, 150, 153, 154, 155
Offset: 1

Views

Author

Jianing Song, Aug 07 2022

Keywords

Comments

Numbers k such that k and sigma(2*k^2) are not coprime, sigma = A000203.
Includes all multiples of 3 since 3 divides sigma(m) if m is twice a square (cf. A065766).

Examples

			10 is a term since 10 and sigma(2*10^2) = 465 have a common factor 5.
		

Crossrefs

Cf. A014567, A000203, A356448, A356449, A356452, A356454, A356456 (all multiples of 3 removed), A065766.

Programs

  • Mathematica
    Select[Range[155],GCD[#, DivisorSigma[1,2#^2]]>1 &] (* Stefano Spezia, Aug 07 2024 *)
  • PARI
    isA356453(n) = gcd(n, sigma(2*n^2))>1

A356452 Even numbers k such that k^2 is not in A014567; complement of A356448 in the even numbers.

Original entry on oeis.org

14, 42, 70, 78, 84, 98, 112, 114, 124, 126, 154, 156, 168, 182, 186, 198, 210, 222, 228, 234, 238, 252, 258, 266, 294, 308, 310, 312, 322, 336, 342, 350, 366, 372, 378, 390, 396, 402, 406, 418, 420, 434, 438, 444, 456, 462, 468, 474, 490, 504, 516, 518, 532, 546, 550, 558
Offset: 1

Views

Author

Jianing Song, Aug 07 2022

Keywords

Comments

Even numbers k such that k and sigma(k^2) are not coprime, sigma = A000203.

Examples

			14 is a term since 14 and sigma(14^2) = 399 have a common factor 7.
		

Crossrefs

Programs

  • Mathematica
    Select[2 Range[300],!CoprimeQ[#,DivisorSigma[1,#^2]]&] (* Harvey P. Dale, Mar 09 2023 *)
  • PARI
    isA356452(n) = !(n%2) && gcd(n, sigma(n^2))>1

Formula

a(n) = 2*A356454(n).
Showing 1-3 of 3 results.