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.

A087029 Number of lunar divisors of n (unbounded version).

Original entry on oeis.org

9, 8, 7, 6, 5, 4, 3, 2, 1, 18, 90, 16, 14, 12, 10, 8, 6, 4, 2, 16, 16, 72, 14, 12, 10, 8, 6, 4, 2, 14, 14, 14, 56, 12, 10, 8, 6, 4, 2, 12, 12, 12, 12, 42, 10, 8, 6, 4, 2, 10, 10, 10, 10, 10, 30, 8, 6, 4, 2, 8, 8, 8, 8, 8, 8, 20, 6, 4, 2, 6, 6, 6, 6, 6, 6, 6, 12, 4, 2, 4, 4, 4, 4
Offset: 1

Views

Author

Marc LeBrun and N. J. A. Sloane, Oct 19 2003

Keywords

Comments

Number of d, 1 <= d < infinity, such that there exists an e, 1 <= e < infinity, with d*e = n, where * is lunar multiplication.

Examples

			The 18 divisors of 10 are 1, 2, ..., 9, 10, 20, 30, ..., 90, so a(10) = 18.
		

Crossrefs

Cf. A087062 (lunar product).
Cf. A087028, A087083, A186443, A186510. See A189506 for the actual divisors.
See A067399 for the base-2 version.

Programs

  • Maple
    (Uses programs from A087062. This crude program is valid for n <= 99.) dd2 := proc(n) local t1,t2,i,j; t1 := []; for i from 1 to 99 do for j from i to 99 do if dmul(i,j) = n then t1 := [op(t1),i,j]; fi; od; od; t1 := convert(t1,set); t2 := sort(convert(t1,list)); nops(t2); end;
  • PARI
    A087029(n)=#A189506_row(n) \\ To be optimized. - M. F. Hasler, Nov 15 2018

Extensions

More terms from David Applegate, Nov 07 2003
Minor edits by M. F. Hasler, Nov 15 2018

A186443 Records in A087029.

Original entry on oeis.org

9, 18, 90, 180, 819, 1638, 7461, 14922, 67968
Offset: 1

Views

Author

N. J. A. Sloane, Feb 21 2011

Keywords

Crossrefs

Cf. A186510.

A186508 Number of lunar divisors (A087029) of the decimal numbers 1, 10, 11, 100, 101, 110, 111, 1000, ... .

Original entry on oeis.org

9, 19, 90, 27, 90, 180, 819, 36, 90, 180, 738, 270, 738, 1638, 7641, 45, 90, 180, 738, 270, 819, 1476, 6570, 360, 738, 1476, 6732, 2457, 6570, 14922, 67968
Offset: 1

Views

Author

N. J. A. Sloane, Feb 22 2011

Keywords

Comments

This is for lunar arithmetic in base 10.

Examples

			The lunar divisors of 1 are 1,2,3,4,5,6,7,8,9, so a(1)=9.
The lunar divisors of 10 are 1...9 and 10, 20, 30, 40, ..., 90, so a(2) = 18.
		

Crossrefs

Showing 1-3 of 3 results.