login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A036921
Numbers n such that digit sum of n equals digit sum of 'juxtaposition' and 'sum' of its prime factors (counted with multiplicity).
3
4, 22, 27, 94, 121, 166, 202, 265, 274, 346, 355, 382, 438, 454, 517, 526, 562, 634, 706, 852, 913, 915, 922, 1086, 1111, 1165, 1219, 1255, 1282, 1507, 1626, 1633, 1642, 1822, 1894, 1903, 1966, 2067, 2155, 2173, 2182, 2227, 2265, 2326, 2362, 2409, 2434
OFFSET
1,1
MATHEMATICA
d[n_]:=IntegerDigits[n]; co[n_, k_]:=Nest[Flatten[d[{#, n}]]&, n, k-1]; t={}; Do[If[!PrimeQ[n]&&Total[d[n]]==Total[d[Total[Times@@@(x=FactorInteger[n])]]]==Total[Flatten[d[co@@@x]]], AppendTo[t, n]], {n, 4, 2435}]; t (* Jayanta Basu, Jun 04 2013 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Jan 04 1999
STATUS
approved