login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A167342
Totally multiplicative sequence with a(p) = p*(p+3) = p^2+3p for prime p.
1
1, 10, 18, 100, 40, 180, 70, 1000, 324, 400, 154, 1800, 208, 700, 720, 10000, 340, 3240, 418, 4000, 1260, 1540, 598, 18000, 1600, 2080, 5832, 7000, 928, 7200, 1054, 100000, 2772, 3400, 2800, 32400, 1480, 4180, 3744, 40000, 1804, 12600, 1978, 15400, 12960
OFFSET
1,2
LINKS
FORMULA
Multiplicative with a(p^e) = (p*(p+3))^e. If n = Product p(k)^e(k) then a(n) = Product (p(k)*(p(k)+3))^e(k). a(n) = n * A166591(n).
Sum_{k>=1} 1/a(k) = Product_{primes p} (1 + 1/(p^2 + 3*p - 1)) = 1.256741057020447773244230946716370792268447699628630376844295183469512964116... - Vaclav Kotesovec, Sep 20 2020
MATHEMATICA
a[1] = 1; a[n_] := (fi = FactorInteger[n]; Times @@ ((fi[[All, 1]] + 3)^fi[[All, 2]])); Table[a[n]*n, {n, 1, 100}] (* G. C. Greubel, Jun 10 2016 *)
CROSSREFS
Sequence in context: A241053 A068642 A198309 * A288781 A233451 A177172
KEYWORD
nonn,mult
AUTHOR
Jaroslav Krizek, Nov 01 2009
STATUS
approved