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!)
A167333 Totally multiplicative sequence with a(p) = 2*(5p-1) = 10p-2 for prime p. 1
1, 18, 28, 324, 48, 504, 68, 5832, 784, 864, 108, 9072, 128, 1224, 1344, 104976, 168, 14112, 188, 15552, 1904, 1944, 228, 163296, 2304, 2304, 21952, 22032, 288, 24192, 308, 1889568, 3024, 3024, 3264, 254016, 368, 3384, 3584, 279936, 408, 34272, 428 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
Multiplicative with a(p^e) = (2*(5p-1))^e. If n = Product p(k)^e(k) then a(n) = Product (2*(5*p(k)-1))^e(k).
a(n) = A061142(n) * A166654(n) = 2^bigomega(n) * A166654(n) = 2^A001222(n) * A166654(n).
MATHEMATICA
a[1] = 1; a[n_] := (fi = FactorInteger[n]; Times @@ ((5*fi[[All, 1]] - 1)^fi[[All, 2]])); Table[a[n]*2^PrimeOmega[n], {n, 1, 100}] (* G. C. Greubel, Jun 06 2016 *)
f[p_, e_] := (10*p-2)^e; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Oct 18 2023 *)
PROG
(PARI) a(n) = {my(f=factor(n)); for (k=1, #f~, f[k, 1] = 10*f[k, 1]-2; ); factorback(f); } \\ Michel Marcus, Jun 06 2016
CROSSREFS
Sequence in context: A063840 A180117 A339633 * A259642 A045000 A205871
KEYWORD
nonn,easy,mult
AUTHOR
Jaroslav Krizek, Nov 01 2009
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 April 25 13:26 EDT 2024. Contains 371971 sequences. (Running on oeis4.)