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.

A176299 Variant sequence A169652, with a(1)=1 and a(2)=3.

Original entry on oeis.org

1, 3, 16, 400, 176400, 31265312400, 977530816165936208400, 955566496615167328821016225384209913664400, 913107329453384594090655605142589591944555936335177523176387250981965992675658480400
Offset: 1

Views

Author

Giovanni Teofilatto, Apr 14 2010

Keywords

Comments

Except for first two terms, sqrt(a(n+1)/a(n)) = A144780(n).

Programs

  • Mathematica
    a={1,3};Do[AppendTo[a,Total[a]^2],{9}];a (* Indranil Ghosh, Feb 20 2017 *)
  • Python
    #Program to generate the b-file
    lst=[1,3]
    print("1 1")
    print("2 3")
    i=3
    a=sum(lst)**2
    while i<=12:
        print(str(i)+" "+str(a))
        lst.append(a)
        i+=1
        a=sum(lst)**2 # Indranil Ghosh, Feb 20 2017

A176349 Integers equal to sqrt(A169652(n)/900).

Original entry on oeis.org

1, 31, 28861, 24988748491, 18733126534418632060921, 10527900892636182836790613691868303334293108151, 3325100916155092061227521396285672007717003791068669733032713344074584207918598201019772272181
Offset: 1

Views

Author

Giovanni Teofilatto, Apr 15 2010

Keywords

Comments

a(n) is divisible by 31.

Crossrefs

Cf. A169652.
Showing 1-2 of 2 results.