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!)
A351225 a(n) = A276086(n) - n, where A276086 is the primorial base exp-function. 3
1, 1, 1, 3, 5, 13, -1, 3, 7, 21, 35, 79, 13, 37, 61, 135, 209, 433, 107, 231, 355, 729, 1103, 2227, 601, 1225, 1849, 3723, 5597, 11221, -23, -17, -11, 9, 29, 91, -1, 33, 67, 171, 275, 589, 133, 307, 481, 1005, 1529, 3103, 827, 1701, 2575, 5199, 7823, 15697, 4321, 8695, 13069, 26193, 39317, 78691, -11, 37, 85, 231 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Sequence contains no zeros because the parity of A276086(n) is opposite to that of n.
LINKS
MATHEMATICA
Array[Block[{i, m, n = #, p}, m = i = 1; While[n > 0, p = Prime[i]; m *= p^Mod[n, p]; n = Quotient[n, p]; i++]; m - #] &, 64, 0] (* Michael De Vlieger, Feb 05 2022 *)
PROG
(PARI)
A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
A351225(n) = (A276086(n)-n);
CROSSREFS
Cf. A276086, A351226 (positions of negative terms), A351227 (of positive terms).
Cf. also A350074.
Sequence in context: A276735 A099791 A301901 * A348744 A263829 A028268
KEYWORD
sign,base
AUTHOR
Antti Karttunen, Feb 05 2022
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 March 28 16:58 EDT 2024. Contains 371254 sequences. (Running on oeis4.)