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!)
A064800 n plus the number of its prime factors: a(n) = n + A001222(n). 9
1, 3, 4, 6, 6, 8, 8, 11, 11, 12, 12, 15, 14, 16, 17, 20, 18, 21, 20, 23, 23, 24, 24, 28, 27, 28, 30, 31, 30, 33, 32, 37, 35, 36, 37, 40, 38, 40, 41, 44, 42, 45, 44, 47, 48, 48, 48, 53, 51, 53, 53, 55, 54, 58, 57, 60, 59, 60, 60, 64, 62, 64, 66, 70, 67, 69, 68, 71, 71, 73, 72 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Prime factors counted with multiplicity. - Harvey P. Dale, Aug 19 2015
LINKS
EXAMPLE
a(42) = 45 = 42 + 3 (as 42 = 2 * 3 * 7)
MAPLE
A064800 := proc(n)
n+numtheory[bigomega](n) ;
end proc: # R. J. Mathar, Oct 21 2012
MATHEMATICA
Table[n + PrimeOmega[n], {n, 80}] (* Harvey P. Dale, Aug 19 2015 *)
PROG
(PARI) { for (n=1, 1000, write("b064800.txt", n, " ", n + bigomega(n)) ) } \\ Harry J. Smith, Sep 26 2009
(Haskell)
a064800 n = a001222 n + n -- Reinhard Zumkeller, Oct 27 2012
CROSSREFS
Sequence in context: A286956 A265283 A023836 * A078574 A347299 A230300
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Oct 21 2001
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 11 21:30 EDT 2024. Contains 372420 sequences. (Running on oeis4.)