cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A086982 Numbers n such that 10^n+1 is not squarefree.

Original entry on oeis.org

11, 21, 33, 39, 55, 63, 77, 99, 105, 117, 121, 136, 143, 147, 165, 171, 187, 189, 195, 202, 209, 231, 243, 253, 273, 275, 292, 297, 315, 319, 341, 351, 357, 363, 385, 399, 406, 407, 408, 429, 441, 451, 473, 483, 495, 507, 513, 517, 525, 539, 548, 561, 567
Offset: 1

Views

Author

Ray Chandler, Jul 27 2003

Keywords

Comments

This sequence is the union of the collection of sequences formed from the nonzero terms of A086981 * A005408, the odd numbers. First occurrence of consecutive integers in sequence is 406,407,408.
From Robert Israel, Feb 13 2017: (Start)
Numbers n such that gcd(n, 10^n + 1) > 1 or n = k*m where k is odd and 2*m is the order of 10 modulo a member of A045616. [Corrected by Jianing Song, Nov 01 2024]
If n is in the sequence, then so is k*n for any odd k. (End)
Numbers of the form k*ord(10,p^2)/2, where k is an odd number and p is a prime such that ord(10,p) is even. Here ord(a,m) is the multiplicative order of a modulo m. Note that if p is not in A045616, then ord(10,p^2) = p*ord(10,p). - Jianing Song, Nov 01 2024

Crossrefs

Programs

  • Maple
    filter:= n -> (n mod 243 = 0 and (n/243)::odd) or igcd(n,(10 &^n +1 mod n)) > 1: # Note that this works if n < 28299156
    select(filter, [$1..1000]); # Robert Israel, Feb 13 2017
  • PARI
    ord = [1, 486, 56598312]; \\ order of 10 modulo A045616
    isA086982(n) = if(gcd(n, 10^n+1) > 1, return(1)); for(i=1, 3, if((ord[i] % 2 == 0) && (n % (ord[i]/2) == 0) && (n/(ord[i]/2) % 2 == 1), return(1))); return(0) \\ Jianing Song, Nov 01 2024, after Robert Israel's comment; considering only the three currently-known terms of A045616

A077712 a(1) = 1, a(n) = the smallest squarefree number > a(n-1) which contains all the digits of a(n-1).

Original entry on oeis.org

1, 10, 101, 110, 1001, 1010, 10001, 10010, 100001, 100010, 1000001, 1000010, 10000001, 10000010, 100000001, 100000010, 1000000001, 1000000010, 10000000001, 10000000010, 100000000010, 1000000000001, 10000000000001
Offset: 1

Views

Author

Amarnath Murthy, Nov 19 2002

Keywords

Comments

Conjecture: Terms contain only two types of digits, i.e., 0 and 1.
Beginning with a(3), sequence follows a regular pattern: 10^2+1, 10^2+10, 10^3+1, 10^3+10, etc. until at a(21) the pattern is disrupted by 10^11+1, which is not squarefree (see A086982). 10^12+10 is also absent from the sequence since it is also not squarefree. The pattern resumes after this disruption until the next occurrence of 10^k+1 which is not squarefree, k=21, 33, 39, 55, ... The conjecture that the sequence is composed of terms containing only the digits 0 and 1 is certainly true up to 10^406+1 where both it and 10^407+1 are not squarefree. Indeed beginning with a(3) the terms contain exactly two 1 digits and the rest 0's up to this point. The term following 10^406+10 will introduce a third nonzero digit, perhaps a 1, but the pattern of the sequence changes dramatically at this point. - Ray Chandler, Aug 02 2003
Term following a(739)=10^406+10 is a(740)=10^407+11 so the conjecture is still in play. - Ray Chandler, Aug 05 2003

Crossrefs

Subsequence of A005117.

Extensions

More terms from Ray Chandler, Aug 02 2003
Offset corrected by Mohammed Yaseen, Aug 16 2023
Showing 1-2 of 2 results.