login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A028233 If n = p_1^e_1 * ... * p_k^e_k, p_1 < ... < p_k primes, then a(n) = p_1^e_1. 14
1, 2, 3, 4, 5, 2, 7, 8, 9, 2, 11, 4, 13, 2, 3, 16, 17, 2, 19, 4, 3, 2, 23, 8, 25, 2, 27, 4, 29, 2, 31, 32, 3, 2, 5, 4, 37, 2, 3, 8, 41, 2, 43, 4, 9, 2, 47, 16, 49, 2, 3, 4, 53, 2, 5, 8, 3, 2, 59, 4, 61, 2, 9, 64, 5, 2, 67, 4, 3, 2, 71, 8, 73, 2, 3, 4, 7, 2, 79, 16, 81, 2, 83, 4, 5, 2 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

LINKS

T. D. Noe, Table of n, a(n) for n=1..1000

FORMULA

a(n) = A020639(n)^A067029(n). - Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), May 13 2006

MATHEMATICA

a[n_] := Power @@ First[ FactorInteger[n]]; Table[a[n], {n, 1, 86}] (* From Jean-François Alcover, Dec 01 2011 *)

PROG

(Haskell)

a028233 1 = 1

a028233 n = f (n `div` p) p where

   f x y | m > 0     = y

         | otherwise = f x' (p*y) where (x', m) = divMod x p

   p = a020639 n

-- Reinhard Zumkeller, Aug 17 2011

CROSSREFS

Cf. A020639, A006530, A034684, A028233, A034699, A053585.

See also A028234.

Sequence in context: A026362 A081811 A034684 * A066296 A162961 A145255

Adjacent sequences:  A028230 A028231 A028232 * A028234 A028235 A028236

KEYWORD

nonn,nice,easy

AUTHOR

Marc LeBrun (mlb(AT)well.com)

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 14:02 EST 2012. Contains 205811 sequences.