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!)
A284008 a(n) = lcm(A260443(n), A260443(1+n)). 3
2, 6, 6, 30, 90, 90, 30, 210, 630, 450, 1350, 1890, 3150, 3150, 210, 2310, 6930, 3150, 47250, 330750, 992250, 141750, 47250, 103950, 173250, 110250, 330750, 519750, 242550, 242550, 2310, 30030, 90090, 34650, 3638250, 3638250, 272868750, 173643750, 11576250, 200103750, 600311250, 34728750, 2604656250, 28651218750, 1910081250, 272868750, 3638250, 9459450, 15765750 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n) = lcm(A260443(n), A260443(1+n)).
a(n) = A277324(n) / A277198(n).
Other identities. For all n >= 0:
A001222(a(n)) = A284009(n).
MATHEMATICA
a[p_?PrimeQ] := a[p] = Prime[ PrimePi[p] + 1]; a[1] = 1; a[n_] := a[n] = Times @@ ( a[First[#]] ^ Last[#] & ) /@ FactorInteger[n]; (* after Jean-François Alcover, in A003961 *) A[n_]:= If[n<2, n + 1, If[EvenQ[n], a[A[n/2]], A[(n - 1)/2] A[(n + 1)/2]]] ; Table[A[n], {n, 0, 51}] (* sequence A260443 *) Table[LCM[A[n], A[n + 1]], {n, 0, 101}] (* Indranil Ghosh, Mar 22 2017 *)
PROG
(PARI)
A003961(n) = my(f = factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); \\ From Michel Marcus
A260443(n) = if(n<2, n+1, if(n%2, A260443(n\2)*A260443(n\2+1), A003961(A260443(n\2))));
A284008(n) = lcm(A260443(n), A260443(1+n));
(Scheme)
(define (A284008 n) (lcm (A260443 n) (A260443 (+ 1 n))))
(define (A284008 n) (/ (A277324 n) (A277198 n)))
CROSSREFS
Sequence in context: A083907 A084343 A025552 * A284576 A060114 A033188
KEYWORD
nonn
AUTHOR
Antti Karttunen, Mar 22 2017
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 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)