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

A201020 Composite numbers whose multiplicative digital root is 6.

Original entry on oeis.org

6, 16, 28, 32, 44, 48, 68, 74, 82, 84, 86, 116, 123, 128, 132, 144, 147, 148, 161, 168, 174, 182, 184, 186, 213, 218, 224, 228, 231, 238, 242, 244, 246, 264, 267, 272, 276, 282, 288, 289, 298, 312, 321, 328, 344, 368, 374, 377, 378, 382, 386, 387, 414, 417, 418, 422
Offset: 1

Views

Author

Jaroslav Krizek, Nov 25 2011

Keywords

Comments

Complement of A201019 with respect to A034053.

Examples

			Number 128 is in sequence because 1*2*8=16, 1*6=6.
		

Crossrefs

Cf. A201019 (primes whose multiplicative digital root is 6), A034053 (numbers whose multiplicative digital root is 6).

Programs

  • Mathematica
    mdr6Q[n_]:=CompositeQ[n]&&NestWhile[Times@@IntegerDigits[#]&,n,#>9&] ==6; Select[Range[500],mdr6Q] (* Harvey P. Dale, May 30 2015 *)
Showing 1-1 of 1 results.