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.

A048168 n is divisible by the square of the number of unitary divisors of n (A034444).

Original entry on oeis.org

1, 4, 8, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 256, 272, 288, 304, 320, 352, 368, 384, 400, 416, 432, 448, 464, 496, 512, 544, 576, 592, 608, 640, 656, 688, 704, 736, 752, 768, 784, 800, 832, 848, 864, 896, 928, 944, 960, 976, 992
Offset: 1

Views

Author

Keywords

Examples

			x=2032=16*127 has 4 unitary divisors: {1,16,127,2032} and ud[ x ]^2=16 divides 2032.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[10^3], Divisible[#, 4^PrimeNu[#]] &] (* Amiram Eldar, Aug 05 2019 *)