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

A363456
Positions of the terms of the Chernoff sequence (A006939) in A025487.
1
1, 2, 6, 27, 150, 900, 5697, 37226, 246280, 1648592, 11204274
OFFSET
0,2
COMMENTS
Indices of records in A363455.
FORMULA
A025487(a(n)) = A006939(n).
A363455(a(n)) = n.
EXAMPLE
A006939(0) = A025487(1) = 1, so a(0) = 1.
A006939(1) = A025487(2) = 2, so a(1) = 2.
A006939(2) = A025487(6) = 12, so a(2) = 6.
MATHEMATICA
lps = Cases[Import["https://oeis.org/A025487/b025487.txt", "Table"], {_, _}][[;; , 2]];
cher = Table[Product[Prime[k]^(n - k + 1), {k, 1, n}], {n, 0, 8}]
Position[lps, #] & /@ cher // Flatten
CROSSREFS
Similar sequences: A098718, A098719, A293635, A306802, A346043, A346407.
Sequence in context: A030858 A030932 A340356 * A118192 A338180 A307595
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Jun 03 2023
STATUS
approved