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

A087914
Numbers m such that A007947(m) = A007947(k) and A007947(m+1) = A007947(k+1), for some k < m.
3
8, 48, 224, 960, 1215, 3968, 16128, 65024, 261120, 1046528, 4190208, 16769024, 67092480, 268402688, 1073676288, 4294836224
OFFSET
1,1
COMMENTS
For every k > 1, the sequence includes 4^k - 2^(k+1), with m = 2^k - 2. - David Wasserman, Jan 29 2004
a(12) <= 16769024. a(13) <= 67092480. a(14) <= 268402688. a(15) <= 1073676288. [Donovan Johnson, Dec 19 2008]
EXAMPLE
A007947(8) = A007947(2) and A007947(9) = A007947(3), so 8 is in the sequence.
PROG
(PARI) rad(n) = factorback(factorint(n)[, 1]); \\ A007947
isok(m) = {my(rm = rad(m), sm = rad(m+1)); for (k=1, m-1, if ((rad(k) == rm) && (rad(k+1) == sm), return (1)); ); } \\ Michel Marcus, Apr 05 2021
CROSSREFS
Sequence in context: A093199 A263507 A261975 * A271061 A211012 A081084
KEYWORD
nonn,hard,more
AUTHOR
Naohiro Nomoto, Oct 26 2003
EXTENSIONS
a(7)-a(11) from Donovan Johnson, Dec 19 2008
Name edited by Michel Marcus, Apr 06 2021
Confirmed a(12)-a(15) and extended with a(16) by Martin Ehrenstein, Apr 18 2021
STATUS
approved