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!)
A334728 Indices of records in A091719 (greatest common divisors of consecutive partition numbers). 0
0, 8, 9, 10, 16, 18, 32, 58, 129, 5484, 28158, 55573, 89570, 371255, 13877936 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The corresponding record values are 1, 2, 6, 14, 33, 35, 69, 220, 17270, 19085, 64190, 471725, 1551362, 8215449, 8990167, ...
LINKS
EXAMPLE
8 is a term since partition(8) = 22 and partition(9) = 30, so A091719(8) = gcd(22, 30) = 2, while A091719(k) = 1 for all k < 8.
MATHEMATICA
p1 = PartitionsP[0]; gm = 0; seq = {}; Do[p2 = PartitionsP[n]; g = GCD[p1, p2]; If[g > gm, gm = g; AppendTo[seq, n-1]]; p1 = p2, {n, 1, 10^4}]; seq
DeleteDuplicates[With[{nn=900000}, Thread[{Range[nn], GCD@@#&/@Partition[PartitionsP[ Range[ 0, nn]], 2, 1]}]], GreaterEqual[#1[[2]], #2[[2]]]&][[;; , 1]]-1 (* The program generates the first 13 terms of the sequence. *) (* Harvey P. Dale, Nov 22 2023 *)
CROSSREFS
Sequence in context: A358675 A091417 A069237 * A070480 A135043 A054966
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, May 09 2020
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)