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.

A202242 n such that the sum of digit !! of n equals the sum of d|n, 1

Original entry on oeis.org

14, 56, 28361, 119507, 191557, 287039, 691259, 750889
Offset: 1

Views

Author

Michel Lagneau, Dec 16 2011

Keywords

Comments

No further terms less than 10^8.
The double factorial n!! (A006882) of a positive integer n is the product of the positive integers <= n that have the same parity as n.

Examples

			56 is in the sequence because 5!! + 6!!  = 15 + 48 = 63, and sum of the divisors 1< d< 56 =  sigma(56) - 56 - 1 = 120 - 56 - 1 = 63.
		

Crossrefs

Programs

  • Mathematica
    Q[n_]:=Module[{a=Total[Rest[Most[Divisors[n]]]]}, a == Total[IntegerDigits[n]!!]]; Select[Range[2, 10^5], Q]