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.

A036920 Composite numbers n such that digit sum of n equals digit sum of sum of its prime factors (counted with multiplicity).

This page as a plain text file.
%I A036920 #14 Nov 30 2020 22:36:19
%S A036920 4,22,27,94,105,114,121,150,166,202,204,222,224,265,274,315,342,346,
%T A036920 355,382,438,445,450,454,517,526,540,562,612,634,640,706,841,852,913,
%U A036920 915,922,1068,1086,1111,1120,1122,1138,1165,1185,1200,1219,1221,1230
%N A036920 Composite numbers n such that digit sum of n equals digit sum of sum of its prime factors (counted with multiplicity).
%t A036920 ds[n_]:=Total[IntegerDigits[n]]; t={}; Do[If[!PrimeQ[n]&&ds[n]==ds[Total[ Times@@@FactorInteger[n]]],AppendTo[t,n]],{n,4,1230}]; t (* _Jayanta Basu_, Jun 04 2013 *)
%Y A036920 Cf. A006753, A036921, A019506.
%K A036920 nonn,base
%O A036920 1,1
%A A036920 _Patrick De Geest_, Jan 04 1999
%E A036920 Title made more precise by _Sean A. Irvine_, Nov 30 2020