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.

A279373 Numbers n such that number of divisors of n divides n and at the same time the least number having exactly n divisors is divisible by n.

Original entry on oeis.org

1, 2, 8, 9, 12, 18, 24, 36, 40, 56, 60, 72, 80, 84, 180, 225, 240, 252, 288, 360, 396, 441, 448, 450, 504, 560, 600, 625, 672, 720, 792, 880, 882, 936, 1040, 1056, 1200, 1248, 1250, 1260, 1344, 1408, 1440, 1620, 1664, 1680, 1800, 1980, 2000, 2016, 2025, 2160, 2176, 2240, 2340, 2640, 2700, 2772, 3120, 3168
Offset: 1

Views

Author

Vladimir Letsko, Dec 11 2016

Keywords

Comments

Intersection of A033950 and A262981.

Examples

			8 is in the sequence because 8 is divisible by tau(8) and at the same time 8 divides 24 which is the least number having exactly 8 divisors.
		

Crossrefs

Programs

  • Mathematica
    Function[s, Select[TakeWhile[#, KeyExistsQ[s, #] &], Divisible[Lookup[s, #], #] &] &@ Select[Range@ 3000, Divisible[#, DivisorSigma[0, #]] &]]@ Map[First, KeySort@ PositionIndex@ Table[DivisorSigma[0, n], {n, 10^7}]] (* Michael De Vlieger, Dec 11 2016, Version 10 *)