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”).

A323155
a(n) = Product_{d|n, d-1 is prime} (d-1)^(1+A286561(n,d-1)), where A286561(n,k) gives the k-valuation of n (for k > 1).
7
1, 1, 2, 3, 1, 20, 1, 21, 2, 1, 1, 3960, 1, 13, 2, 21, 1, 340, 1, 57, 2, 1, 1, 1275120, 1, 1, 2, 39, 1, 2900, 1, 651, 2, 1, 1, 201960, 1, 37, 2, 399, 1, 10660, 1, 129, 2, 1, 1, 119861280, 1, 1, 2, 3, 1, 18020, 1, 1911, 2, 1, 1, 643678200, 1, 61, 2, 651, 1, 20, 1, 201, 2, 13, 1, 4617209520, 1, 73, 2, 111, 1, 20, 1, 31521, 2, 1, 1, 175186440, 1, 1, 2, 903, 1
OFFSET
1,3
LINKS
FORMULA
a(n) = Product_{d|n, d>2} [(d-1)^(1+A286561(n,d-1))]^A010051(d-1).
PROG
(PARI) A323155(n) = { my(m=1); fordiv(n, d, if(isprime(d-1), m *= (d-1)^(1+valuation(n, d-1)))); (m); }; \\ Antti Karttunen, Jan 09 2019
CROSSREFS
Cf. also A185633.
Sequence in context: A193683 A145643 A338208 * A145142 A137738 A350624
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 09 2019
STATUS
approved