The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A217390 Numbers n such that sum of squares of digits of n equals the sum of prime divisors of n. 3
12, 581, 1014, 1036, 1180, 1272, 1746, 2553, 3420, 3741, 4140, 4544, 5104, 5238, 5313, 5966, 7134, 7272, 8174, 8346, 8549, 9153, 9525, 9536, 10476, 11070, 11800, 12350, 12882, 13481, 13702, 14045, 15341, 15974, 16415, 16999, 17051, 17220, 17444, 18361, 18798 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
n such that A003132(n) = A008472(n).
LINKS
EXAMPLE
581 = 7*83 is in the sequence because 5^2 + 8^2 + 1^2 = 7 + 83 = 90.
MAPLE
with(numtheory):A:= proc(n) add(u^2, u=convert(n, base, 10)) ; end proc: for i from 2 to 20000 do:x:=factorset(i):n1:=nops(x): s:=sum('x[i] ', 'i'=1..n1):if s=A(i) then printf(`%d, `, i):else fi:od:
MATHEMATICA
Rest[Select[Range[20000], Total[Transpose[FactorInteger[#]][[1]]]==Total[IntegerDigits[#]^2]&]]
PROG
(PARI) ok(n)={vecsum(factor(n)[, 1]) == vecsum(apply(d->d^2, digits(n)))} \\ Andrew Howroyd, Feb 25 2018
CROSSREFS
Sequence in context: A307948 A042111 A159644 * A219103 A219982 A329024
KEYWORD
nonn,easy,base
AUTHOR
Michel Lagneau, Oct 05 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 20 17:58 EDT 2024. Contains 372720 sequences. (Running on oeis4.)