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-6 of 6 results.

A102140 Iccanobirt prime indices (10 of 15): Indices of prime numbers in A102120.

Original entry on oeis.org

4, 6, 7, 11, 12, 20, 25, 45, 113, 193, 1214, 1272, 2435, 4007, 12258, 12771, 14166, 27368, 29184
Offset: 1

Views

Author

Jonathan Vos Post and Ray Chandler, Dec 31 2004

Keywords

Comments

No more terms through 5000.
a(20) > 50000. - Robert Price, Nov 10 2018

Crossrefs

Programs

  • Mathematica
    b[0] = b[1] = 0; b[2] = 1; b[n_] := b[n] = IntegerReverse[b[n - 1] + IntegerReverse[b[n - 2]] + b[n - 3]];
    Reap[Do[If[PrimeQ[b[n]], Print[n]; Sow[n]], {n, 5000}]][[2, 1]] (* Jean-François Alcover, Dec 15 2017 *)

Formula

A102120(a(n)) = A102160(n).

Extensions

a(15)-a(19) from Robert Price, Nov 10 2018

A102160 Iccanobirt primes (10 of 15): Prime numbers in A102120.

Original entry on oeis.org

2, 7, 31, 977, 8311, 6303211, 376085401, 243108206127601, 797617957269902814324298809066990611, 13986539709338184569448604343396198783632139863691161608206506541
Offset: 1

Views

Author

Jonathan Vos Post and Ray Chandler, Dec 31 2004

Keywords

Comments

Next term is too large to include.
The next term has 407 digits. - Harvey P. Dale, Oct 30 2017

Crossrefs

Programs

  • Mathematica
    nxt[{a_,b_,c_}]:={b,c,IntegerReverse[c+IntegerReverse[b]+a]}; Select[ NestList[nxt,{0,0,1},200][[All,1]],PrimeQ] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Oct 30 2017 *)

Formula

a(n) = A102120(A102140(n)).

Extensions

Offset changed to 1 by Jinyuan Wang, Aug 14 2021

A102180 Iccanobirt semiprime indices (10 of 15): Indices of semiprime numbers in A102120.

Original entry on oeis.org

5, 15, 18, 29, 30, 31, 32, 33, 44, 46, 59, 84, 95, 97, 98, 136, 154, 203, 207, 245, 262, 291, 323, 340, 362
Offset: 1

Views

Author

Jonathan Vos Post and Ray Chandler, Dec 31 2004

Keywords

Crossrefs

Formula

A102120(a(n)) = A102200(n).

Extensions

a(18)-a(20) from Robert Price, Nov 10 2018
Offset changed to 1 and a(21)-a(25) from Jinyuan Wang, Aug 14 2021

A102200 Iccanobirt semiprimes (10 of 15): Semiprime numbers in A102120.

Original entry on oeis.org

4, 53122, 412441, 2360934421, 2982905123, 1968515515, 8282454457, 17281502461, 88998294238681, 858342429826762, 2350396241873433799, 25572406084465911331237801, 52170015710352407496920694341, 798986767053692909522422712521, 718154384550161644441959876349
Offset: 1

Views

Author

Jonathan Vos Post and Ray Chandler, Dec 31 2004

Keywords

Crossrefs

Programs

  • Mathematica
    nxt[{a_,b_,c_}]:={b,c,IntegerReverse[c+IntegerReverse[b]+a]};Select[NestList[nxt,{0,0,1},100][[All,1]],PrimeOmega[#]==2&] (* Harvey P. Dale, Nov 17 2024 *)

Formula

a(n) = A102120(A102180(n)).

Extensions

Offset changed to 1 and more terms from Jinyuan Wang, Aug 14 2021

A102112 Iccanobirt numbers (2 of 15): a(n) = a(n-1) + R(a(n-2)) + a(n-3), where R is the digit reversal function A004086.

Original entry on oeis.org

0, 0, 1, 1, 2, 4, 7, 13, 24, 62, 117, 167, 940, 1818, 2034, 11155, 17275, 74420, 142846, 162568, 885229, 1893336, 2978492, 10197702, 15039830, 38797423, 52888176, 100407789, 206394037, 1246986214, 2077887605, 6411178063, 12726051979
Offset: 0

Views

Author

Jonathan Vos Post and Ray Chandler, Dec 30 2004

Keywords

Comments

Digit reversal variation of tribonacci numbers A000073.
Inspired by Iccanobif numbers: A001129, A014258-A014260.

Crossrefs

Programs

  • Mathematica
    R[n_]:=FromDigits[Reverse[IntegerDigits[n]]];Clear[a];a[0]=0;a[1]=0;a[2]=1;a [n_]:=a[n]=a[n-1]+R[a[n-2]]+a[n-3];Table[a[n], {n, 0, 40}]
    nxt[{a_,b_,c_}]:={b,c,a+FromDigits[Reverse[IntegerDigits[b]]]+c}; Transpose[ NestList[nxt,{0,0,1},40]][[1]] (* Harvey P. Dale, Jul 29 2013 *)

Formula

A004086(a(n)) = A102120(n).

A102118 Iccanobirt numbers (8 of 15): a(n) = R(a(n-1) + a(n-2) + a(n-3)), where R is the digit reversal function A004086.

Original entry on oeis.org

0, 0, 1, 1, 2, 4, 7, 31, 24, 26, 18, 86, 31, 531, 846, 8041, 8149, 63071, 16297, 71578, 649051, 629637, 6620531, 9129987, 55108361, 97885807, 551421261, 924514407, 5741283751, 9149127127, 58252941851, 92725334137, 511304721061
Offset: 0

Views

Author

Jonathan Vos Post and Ray Chandler, Dec 30 2004

Keywords

Comments

Digit reversal variation of tribonacci numbers A000073.
Inspired by Iccanobif numbers: A001129, A014258-A014260.

Crossrefs

Programs

  • Mathematica
    R[n_]:=FromDigits[Reverse[IntegerDigits[n]]];Clear[a];a[0]=0;a[1]=0;a[2]=1;a [n_]:=a[n]=R[a[n-1]+a[n-2]+a[n-3]];Table[a[n], {n, 0, 40}]
    Transpose[NestList[{#[[2]],#[[3]],FromDigits[Reverse[IntegerDigits[Total[ #]]]]}&,{0,0,1},40]][[1]] (* Harvey P. Dale, Dec 04 2012 *)

Extensions

Incorrect formula removed by Georg Fischer, Dec 18 2020
Showing 1-6 of 6 results.