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!)
A228181 Numbers k such that sum of square of prime divisors of k equals sum of prime divisors of k+1. 2
12, 27, 385, 1120, 4840, 9936, 14500, 29440, 95795, 105875, 178904, 223155, 341248, 343343, 754985, 830908, 1059630, 1841049, 2408832, 2949375, 3564704, 4934358, 5368792, 5500312, 6695000, 6805372, 8332831, 8846656, 10126336, 12956040, 13157235, 17254600 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers k such that A005063(k) = A008472(k+1).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..333 (terms below 10^10)
EXAMPLE
The prime divisors of 9936 are {2, 3, 23} and the prime divisors of 9937 are {19, 523} => 2^2 + 3^2 + 23^2 = 19 + 523 = 542, hence 9936 is in the sequence.
MATHEMATICA
fQ[n_] := Plus @@ (First@# & /@ FactorInteger[n]^2) == Plus @@ (First@# & /@ FactorInteger[n + 1]); Select[ Range@ 100000, fQ]
PROG
(Magma) [k:k in [2..2500000]| &+PrimeDivisors(k+1) eq &+[PrimeDivisors(k)[i]^2: i in [1..#PrimeDivisors(k)]]]; // Marius A. Burtea, Feb 18 2020
CROSSREFS
Sequence in context: A069550 A079705 A068721 * A196208 A196475 A253534
KEYWORD
nonn
AUTHOR
Michel Lagneau, Aug 15 2013
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 19:00 EDT 2024. Contains 372720 sequences. (Running on oeis4.)