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.

A242868 Numbers n such that sum of the factorial of digits of n is semiprime.

Original entry on oeis.org

3, 14, 15, 16, 17, 18, 22, 24, 25, 27, 28, 40, 41, 42, 50, 51, 52, 60, 61, 70, 71, 72, 80, 81, 82, 102, 104, 105, 107, 108, 112, 114, 115, 117, 118, 120, 121, 123, 125, 126, 128, 132, 140, 141, 144, 145, 146, 147, 148, 150, 151, 152, 154, 156, 157, 158, 162, 164
Offset: 1

Views

Author

K. D. Bajpai, May 24 2014

Keywords

Examples

			a(4) = 16:  1! + 6! = 1 + 720 = 721 = 7 * 103 which is semiprime.
a(9) = 25:  2! + 5! = 2 + 120 = 122 = 2 * 61 which is semiprime.
		

Crossrefs

Programs

  • Maple
    with(numtheory):A242868:= proc() local a; a:=add( i!,i = convert((n), base, 10))(n);if bigomega(a)=2 then RETURN (n);fi; end: seq(A242868 (), n=1..300);
  • Mathematica
    Select[Range[200],PrimeOmega[Total[IntegerDigits[#]!]]==2&] (* Harvey P. Dale, Jul 30 2015 *)