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.

A217791 Numbers k such that sigma(k) = 3*sigma(k+1).

Original entry on oeis.org

180, 12000, 30996, 47940, 66780, 102816, 128040, 234300, 494088, 712272, 1133088, 1408212, 1623072, 1692768, 1896336, 1925196, 2024760, 2388720, 2529090, 2836008, 3423120, 3724320, 3822360, 4628760, 4750920, 7219608, 7359912, 7603488, 7749060
Offset: 1

Views

Author

Paolo P. Lava, Mar 25 2013

Keywords

Examples

			47940 is in the sequence because sigma(47940)=145152, sigma(47941)=48384, and 145152=3*48384.
7749060 is in the sequence because sigma(7749060)=24192000, sigma(7749061)=8064000, and 24192000=3*8064000.
		

Crossrefs

Programs

Extensions

More terms from Bruno Berselli, Mar 25 2013

A340720 Least positive number k such that sigma(k) = n * sigma(k+1).

Original entry on oeis.org

14, 12, 180, 25908120
Offset: 1

Views

Author

Seiichi Manyama, Jan 17 2021

Keywords

Examples

			  n | sigma(a(n)) | sigma(a(n)+1)
----+-------------+--------------
  1 |          24 |            24
  2 |          28 |            14
  3 |         546 |           182
  4 |   103680000 |      25920000
		

Crossrefs

Programs

  • PARI
    {a(n) = my(k=1); while(sigma(k)!=n*sigma(k+1), k++); k}

A340582 Numbers k such that sigma(k) = 4 * sigma(k+1).

Original entry on oeis.org

25908120, 136616760, 171430560, 196876680, 354049920, 405601560, 514374840, 825473880, 1204476000, 2223650520, 2510539920, 3003191100, 4017339480, 4574146500, 6129062940, 6797728800, 7311296520, 9779952000, 12472435080, 13103164800, 19989450000, 22180840920, 22710872520
Offset: 1

Views

Author

Seiichi Manyama, Jan 21 2021

Keywords

Crossrefs

Extensions

a(9)-a(23) from Seiichi Manyama using A058073 data, Jan 21 2021

A353034 Numbers m such that tau(m) = 2 * tau(m + 1) and simultaneously sigma(m) = 2 * sigma(m + 1), where tau(k) = A000005(k) and sigma(k) = A000203(k).

Original entry on oeis.org

20118, 20712, 79338, 103410, 203898, 267630, 570342, 907710, 1093026, 1228062, 1263918, 1663752, 2322760, 3268782, 3468486, 3527250, 5483418, 6277038, 6500442, 7637980, 9181578, 9297078, 17708178, 18638646, 25274946, 25364526, 25768302, 25909254, 31118664
Offset: 1

Views

Author

Jaroslav Krizek, Apr 18 2022

Keywords

Comments

Corresponding values of tau(m): 16, 16, 16, 32, 16, 32, 16, 32, 16, 32, 16, 32, 32, ...
Corresponding values of sigma(m): 46080, 51840, 181440, 276480, 432000, 701568, 1200960, 2211840, ...

Examples

			tau(20118) = 16 = 2 * tau(20119) = 2 * 8, sigma(20118) = 46080 = 2 * sigma(20119) = 2 * 23040.
		

Crossrefs

Cf. A000005 (tau), A000203 (sigma), A054004, A347603, A353033.
Subsequence of A163193.

Programs

  • Magma
    [m: m in [2..10^6] | #Divisors(m) eq 2 * #Divisors(m + 1) and &+Divisors(m) eq 2 * &+Divisors(m + 1)]
Showing 1-4 of 4 results.